diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 05abae60004..e443c4cb48c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -69,4 +69,4 @@ NOTE: The scope is case-sensitive and must match one of the listed scopes. #### More Info -Please refer to the [CONTRIBUTING.md](https://github.com/Analog-Devices-MSDK/msdk/blob/main/Documentation/CONTRIBUTING.md) for more information regarding the PR Title. +Please refer to the [CONTRIBUTING.md](https://github.com/analogdevicesinc/msdk/blob/main/Documentation/CONTRIBUTING.md) for more information regarding the PR Title. diff --git a/.github/workflows/simple_per_test.yml b/.github/workflows/simple_per_test.yml index 0daea963ebb..832af7ef04c 100644 --- a/.github/workflows/simple_per_test.yml +++ b/.github/workflows/simple_per_test.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 with: submodules: false - repository: Analog-Devices-MSDK/msdk + repository: analogdevicesinc/msdk ref: main - name: clean diff --git a/Documentation/CONTRIBUTING.md b/Documentation/CONTRIBUTING.md index a9d89e0e63c..d75c4c8a516 100644 --- a/Documentation/CONTRIBUTING.md +++ b/Documentation/CONTRIBUTING.md @@ -10,7 +10,7 @@ For beginners, [learngitbranching.js.org](https://learngitbranching.js.org/) is The MSDK follows the [GitHub contribution guidelines](https://docs.github.com/en/get-started/quickstart/contributing-to-projects). -External contributions from outside the [Analog Devices organization](https://github.com/Analog-Devices-MSDK) should be made via a Pull Request opened from a fork. Internal contributions should also preferrably use a fork where possible. +External contributions from outside the [Analog Devices organization](https://github.com/analogdevicesinc) should be made via a Pull Request opened from a fork. Internal contributions should also preferrably use a fork where possible. If a direct branch on the mainline MSDK repo is made, the following branch naming conventions should be used when possible: @@ -24,7 +24,7 @@ If a direct branch on the mainline MSDK repo is made, the following branch namin Format: `type(scope): Subject` -For more information of the format, please review the [pull_request_template.md](https://github.com/Analog-Devices-MSDK/msdk/blob/main/Documentation/pull_request_template.md). +For more information of the format, please review the [pull_request_template.md](https://github.com/analogdevicesinc/msdk/blob/main/Documentation/pull_request_template.md). These are the rules for the `Subject`. @@ -184,11 +184,11 @@ clang-format rules are loaded from the **.clang-format** and cpplint rules are l 1. First, ensure that the example project has been linted and formatted to follow the [Style Guide](#style-guide) -2. Copy the example project into the [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) folder of the SDK for the applicable target microcontrollers. +2. Copy the example project into the [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) folder of the SDK for the applicable target microcontrollers. 3. `git add` and `git commit` the Example project. **Commit your project files before running MSDKGen.** -4. Run the [MSDKGen](https://github.com/Analog-Devices-MSDK/MSDKGen) utility to ensure the example project's support files are updated to the latest version. +4. Run the [MSDKGen](https://github.com/analogdevicesinc/MSDKGen) utility to ensure the example project's support files are updated to the latest version. python msdkgen.py update-all --projects yourprojectname --overwrite @@ -206,9 +206,9 @@ clang-format rules are loaded from the **.clang-format** and cpplint rules are l ## Contributing Libraries -Libraries should be added to the [Libraries](Libraries) sub-folder of the MSDK. +Libraries should be added to the `Libraries` sub-folder of the MSDK. -- All libraries should include a `libraryname.mk` file that can be added to `Libraries/libs.mk` via a toggle-switch. The filename should match the name of library as closely as possible, and expose any required [configuration variables](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration). +- All libraries should include a `libraryname.mk` file that can be added to `Libraries/libs.mk` via a toggle-switch. The filename should match the name of library as closely as possible, and expose any required [configuration variables](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration). - If necessary, a library may also include a "core" Makefile or set of Makefiles to build it as a standalone static library file. The naming convention is `lib.a`. @@ -238,13 +238,13 @@ For example: SRCS += libfile1.c SRCS += libfile2.c -An example of this is [MiscDrivers](Libraries/MiscDrivers/), which is a simple source-file-only library. It gets its source code selectively added to the build via `Libraries/Boards/MAX78000/EvKit_V1/board.mk` files. +An example of this is `MiscDrivers`, which is a simple source-file-only library. It gets its source code selectively added to the build via files like `Libraries/Boards/MAX78000/EvKit_V1/board.mk`. ### Advanced Libraries More advanced libraries (including those with a large number of source files) should include a rule to build as a static library file with a [recursive Make call](https://www.gnu.org/software/make/manual/make.html#Recursion). -This type of library should also set up the appropriate [configuration variables](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration) to include that static library to the build. +This type of library should also set up the appropriate [configuration variables](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration) to include that static library to the build. ## Contributing Documentation @@ -256,7 +256,7 @@ DoxyGen is automatically run across the MSDK code as part of the User Guide's bu ### User Guide -An MSDK User Guide is maintained in the [USERUIDE.md](USERGUIDE.md) file. This document contains higher-level usage info for the MSDK. If a part, IDE, or library is supported by the MSDK then there should be some relevant info in the User Guide covering its setup, configuration, and usage. +An MSDK User Guide is maintained in the [USERGUIDE.md](USERGUIDE.md) file. This document contains higher-level usage info for the MSDK. If a part, IDE, or library is supported by the MSDK then there should be some relevant info in the User Guide covering its setup, configuration, and usage. When writing markdown links, relative paths should always be used. Additionally, links to local files on the user's filesystem **cannot** be used, since the online copy of the docs will throw a 404 on them. See [Writing Your Docs](https://www.mkdocs.org/user-guide/writing-your-docs/) for more details. diff --git a/Documentation/build.py b/Documentation/build.py index b782fe7dce9..7e5c521849f 100644 --- a/Documentation/build.py +++ b/Documentation/build.py @@ -120,7 +120,7 @@ class CommonExampleInfo(ExampleInfo): for main_file in Path(i).rglob("**/main.c"): example_info = parse_example_info(main_file) if example_info and example_info.name not in common_example_names: - link = f"https://github.com/Analog-Devices-MSDK/msdk/tree/release/{Path(example_info.folder).relative_to(repo).as_posix()}" + link = f"https://github.com/analogdevicesinc/msdk/tree/release/{Path(example_info.folder).relative_to(repo).as_posix()}" table_entries.append(f"| **{example_info.name}** | {example_info.description} | _Local:_`{Path(example_info.folder).relative_to(repo)}`
_Github:_ [link]({link})") markdown_content += "\n".join(sorted(table_entries)) markdown_content += "\n\n" diff --git a/Documentation/index.md b/Documentation/index.md index af9bea4b710..7cc6a522a2b 100644 --- a/Documentation/index.md +++ b/Documentation/index.md @@ -8,5 +8,5 @@ To **get started** see the [**User Guide**](USERGUIDE.md). For **development resources**: -* [Github](https://github.com/Analog-Devices-MSDK/msdk) +* [Github](https://github.com/analogdevicesinc/msdk) * [Contributing](CONTRIBUTING.md) diff --git a/Examples/MAX32520/AES/.vscode/README.md b/Examples/MAX32520/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/AES/.vscode/README.md +++ b/Examples/MAX32520/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/ARM-DSP/README.md b/Examples/MAX32520/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32520/ARM-DSP/README.md +++ b/Examples/MAX32520/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32520/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/CRC/.vscode/README.md b/Examples/MAX32520/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/CRC/.vscode/README.md +++ b/Examples/MAX32520/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Coremark/.vscode/README.md b/Examples/MAX32520/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Coremark/.vscode/README.md +++ b/Examples/MAX32520/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/DMA/.vscode/README.md b/Examples/MAX32520/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/DMA/.vscode/README.md +++ b/Examples/MAX32520/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/ECDSA/.vscode/README.md b/Examples/MAX32520/ECDSA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ECDSA/.vscode/README.md +++ b/Examples/MAX32520/ECDSA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32520/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Flash/.vscode/README.md b/Examples/MAX32520/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Flash/.vscode/README.md +++ b/Examples/MAX32520/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Flash_CLI/.vscode/README.md b/Examples/MAX32520/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32520/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32520/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/GPIO/.vscode/README.md b/Examples/MAX32520/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/GPIO/.vscode/README.md +++ b/Examples/MAX32520/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Hello_World/.vscode/README.md b/Examples/MAX32520/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Hello_World/.vscode/README.md +++ b/Examples/MAX32520/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32520/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/I2C_MNGR/.vscode/README.md b/Examples/MAX32520/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32520/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/I2C_SCAN/.vscode/README.md b/Examples/MAX32520/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32520/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/I2C_Sensor/.vscode/README.md b/Examples/MAX32520/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32520/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/ICC/.vscode/README.md b/Examples/MAX32520/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/ICC/.vscode/README.md +++ b/Examples/MAX32520/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/LP/.vscode/README.md b/Examples/MAX32520/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/LP/.vscode/README.md +++ b/Examples/MAX32520/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Library_Generate/.vscode/README.md b/Examples/MAX32520/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32520/Library_Generate/.vscode/README.md +++ b/Examples/MAX32520/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/Library_Use/.vscode/README.md b/Examples/MAX32520/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Library_Use/.vscode/README.md +++ b/Examples/MAX32520/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/LockDebug/.vscode/README.md b/Examples/MAX32520/LockDebug/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/LockDebug/.vscode/README.md +++ b/Examples/MAX32520/LockDebug/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/OTP_Dump/.vscode/README.md b/Examples/MAX32520/OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/OTP_Dump/.vscode/README.md +++ b/Examples/MAX32520/OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32520/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SFE/.vscode/README.md b/Examples/MAX32520/SFE/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SFE/.vscode/README.md +++ b/Examples/MAX32520/SFE/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SFE_Host/.vscode/README.md b/Examples/MAX32520/SFE_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SFE_Host/.vscode/README.md +++ b/Examples/MAX32520/SFE_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SMON/.vscode/README.md b/Examples/MAX32520/SMON/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SMON/.vscode/README.md +++ b/Examples/MAX32520/SMON/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SPI/.vscode/README.md b/Examples/MAX32520/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SPI/.vscode/README.md +++ b/Examples/MAX32520/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32520/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/TMR/.vscode/README.md b/Examples/MAX32520/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/TMR/.vscode/README.md +++ b/Examples/MAX32520/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/TRNG/.vscode/README.md b/Examples/MAX32520/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/TRNG/.vscode/README.md +++ b/Examples/MAX32520/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32520/UCL/.vscode/README.md b/Examples/MAX32520/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32520/UCL/.vscode/README.md +++ b/Examples/MAX32520/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32520/UCL/Makefile b/Examples/MAX32520/UCL/Makefile index b7fb123b807..6a20b14d0f9 100644 --- a/Examples/MAX32520/UCL/Makefile +++ b/Examples/MAX32520/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # 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/.vscode/README.md b/Examples/MAX32520/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32520/Watchdog/.vscode/README.md +++ b/Examples/MAX32520/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/ADC/.vscode/README.md b/Examples/MAX32650/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ADC/.vscode/README.md +++ b/Examples/MAX32650/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/ADC_MAX11261/.vscode/README.md b/Examples/MAX32650/ADC_MAX11261/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ADC_MAX11261/.vscode/README.md +++ b/Examples/MAX32650/ADC_MAX11261/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/AES/.vscode/README.md b/Examples/MAX32650/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/AES/.vscode/README.md +++ b/Examples/MAX32650/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/ARM-DSP/README.md b/Examples/MAX32650/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32650/ARM-DSP/README.md +++ b/Examples/MAX32650/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 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 @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: 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 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32650/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/CLCD/.vscode/README.md b/Examples/MAX32650/CLCD/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/CLCD/.vscode/README.md +++ b/Examples/MAX32650/CLCD/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/CRC/.vscode/README.md b/Examples/MAX32650/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/CRC/.vscode/README.md +++ b/Examples/MAX32650/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Coremark/.vscode/README.md b/Examples/MAX32650/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Coremark/.vscode/README.md +++ b/Examples/MAX32650/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/DES/.vscode/README.md b/Examples/MAX32650/DES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/DES/.vscode/README.md +++ b/Examples/MAX32650/DES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/DMA/.vscode/README.md b/Examples/MAX32650/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/DMA/.vscode/README.md +++ b/Examples/MAX32650/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32650/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/EMCC/.vscode/README.md b/Examples/MAX32650/EMCC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/EMCC/.vscode/README.md +++ b/Examples/MAX32650/EMCC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Flash/.vscode/README.md b/Examples/MAX32650/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Flash/.vscode/README.md +++ b/Examples/MAX32650/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Flash_CLI/.vscode/README.md b/Examples/MAX32650/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32650/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32650/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/GPIO/.vscode/README.md b/Examples/MAX32650/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/GPIO/.vscode/README.md +++ b/Examples/MAX32650/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/HBMC/.vscode/README.md b/Examples/MAX32650/HBMC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/HBMC/.vscode/README.md +++ b/Examples/MAX32650/HBMC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Hello_World/.vscode/README.md b/Examples/MAX32650/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Hello_World/.vscode/README.md +++ b/Examples/MAX32650/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32650/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/I2C/.vscode/README.md b/Examples/MAX32650/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/I2C/.vscode/README.md +++ b/Examples/MAX32650/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/I2C_MNGR/.vscode/README.md b/Examples/MAX32650/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32650/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/I2C_SCAN/.vscode/README.md b/Examples/MAX32650/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32650/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/I2C_Sensor/.vscode/README.md b/Examples/MAX32650/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32650/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/I2S/.vscode/README.md b/Examples/MAX32650/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/I2S/.vscode/README.md +++ b/Examples/MAX32650/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/ICC/.vscode/README.md b/Examples/MAX32650/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/ICC/.vscode/README.md +++ b/Examples/MAX32650/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/LP/.vscode/README.md b/Examples/MAX32650/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/LP/.vscode/README.md +++ b/Examples/MAX32650/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Library_Generate/.vscode/README.md b/Examples/MAX32650/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32650/Library_Generate/.vscode/README.md +++ b/Examples/MAX32650/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Library_Use/.vscode/README.md b/Examples/MAX32650/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Library_Use/.vscode/README.md +++ b/Examples/MAX32650/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/MAA/.vscode/README.md b/Examples/MAX32650/MAA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/MAA/.vscode/README.md +++ b/Examples/MAX32650/MAA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/OTP_Dump/.vscode/README.md b/Examples/MAX32650/OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/OTP_Dump/.vscode/README.md +++ b/Examples/MAX32650/OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/OTP_Dump/project.mk b/Examples/MAX32650/OTP_Dump/project.mk index 9b63c610cc1..38ace6dc09a 100644 --- a/Examples/MAX32650/OTP_Dump/project.mk +++ b/Examples/MAX32650/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://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_APPS_A # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32650/OWM/.vscode/README.md b/Examples/MAX32650/OWM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/OWM/.vscode/README.md +++ b/Examples/MAX32650/OWM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Pulse_Train/.vscode/README.md b/Examples/MAX32650/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Pulse_Train/.vscode/README.md +++ b/Examples/MAX32650/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/RTC/.vscode/README.md b/Examples/MAX32650/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/RTC/.vscode/README.md +++ b/Examples/MAX32650/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/RTC_Backup/.vscode/README.md b/Examples/MAX32650/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32650/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32650/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SDHC_FAT/.vscode/README.md b/Examples/MAX32650/SDHC_FAT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SDHC_FAT/.vscode/README.md +++ b/Examples/MAX32650/SDHC_FAT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SDHC_Raw/.vscode/README.md b/Examples/MAX32650/SDHC_Raw/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SDHC_Raw/.vscode/README.md +++ b/Examples/MAX32650/SDHC_Raw/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPI/.vscode/README.md b/Examples/MAX32650/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPI/.vscode/README.md +++ b/Examples/MAX32650/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPIMSS/.vscode/README.md b/Examples/MAX32650/SPIMSS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPIMSS/.vscode/README.md +++ b/Examples/MAX32650/SPIMSS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPIXF/.vscode/README.md b/Examples/MAX32650/SPIXF/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPIXF/.vscode/README.md +++ b/Examples/MAX32650/SPIXF/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPIXF_ICC/.vscode/README.md b/Examples/MAX32650/SPIXF_ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPIXF_ICC/.vscode/README.md +++ b/Examples/MAX32650/SPIXF_ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPIXR/.vscode/README.md b/Examples/MAX32650/SPIXR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPIXR/.vscode/README.md +++ b/Examples/MAX32650/SPIXR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32650/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Semaphore/.vscode/README.md b/Examples/MAX32650/Semaphore/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Semaphore/.vscode/README.md +++ b/Examples/MAX32650/Semaphore/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/SysTick/.vscode/README.md b/Examples/MAX32650/SysTick/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/SysTick/.vscode/README.md +++ b/Examples/MAX32650/SysTick/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/TMR/.vscode/README.md b/Examples/MAX32650/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/TMR/.vscode/README.md +++ b/Examples/MAX32650/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/TRNG/.vscode/README.md b/Examples/MAX32650/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/TRNG/.vscode/README.md +++ b/Examples/MAX32650/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Temp_Monitor/.vscode/README.md b/Examples/MAX32650/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32650/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/UART/.vscode/README.md b/Examples/MAX32650/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/UART/.vscode/README.md +++ b/Examples/MAX32650/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/UCL/.vscode/README.md b/Examples/MAX32650/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32650/UCL/.vscode/README.md +++ b/Examples/MAX32650/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32650/UCL/Makefile b/Examples/MAX32650/UCL/Makefile index f1340481d1f..bc444a7b148 100644 --- a/Examples/MAX32650/UCL/Makefile +++ b/Examples/MAX32650/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md +++ b/Examples/MAX32650/USB/USB_CDCACM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md +++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md +++ b/Examples/MAX32650/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md +++ b/Examples/MAX32650/USB/USB_HIDKeyboard/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md +++ b/Examples/MAX32650/USB/USB_MassStorage/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/Watchdog/.vscode/README.md b/Examples/MAX32650/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/Watchdog/.vscode/README.md +++ b/Examples/MAX32650/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32650/WearLeveling/.vscode/README.md b/Examples/MAX32650/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32650/WearLeveling/.vscode/README.md +++ b/Examples/MAX32650/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ADC/.vscode/README.md b/Examples/MAX32655/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ADC/.vscode/README.md +++ b/Examples/MAX32655/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/AES/.vscode/README.md b/Examples/MAX32655/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/AES/.vscode/README.md +++ b/Examples/MAX32655/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/README.md b/Examples/MAX32655/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32655/ARM-DSP/README.md +++ b/Examples/MAX32655/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32655/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE4_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_FreeRTOS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_datc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_dats/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_fcc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_fit/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_fit_FreeRTOS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_mcs/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_otac/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_otas/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/BLE_periph/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/Bootloader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md +++ b/Examples/MAX32655/Bluetooth/RF_Test/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/CRC/.vscode/README.md b/Examples/MAX32655/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/CRC/.vscode/README.md +++ b/Examples/MAX32655/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Coremark/.vscode/README.md b/Examples/MAX32655/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Coremark/.vscode/README.md +++ b/Examples/MAX32655/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/DMA/.vscode/README.md b/Examples/MAX32655/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/DMA/.vscode/README.md +++ b/Examples/MAX32655/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md +++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md index d2f479015ce..4b7e8bdf651 100644 --- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md +++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_arm/README.md @@ -82,11 +82,11 @@ If RV32 Control Register field memsel is 0, the sysram2 and sysram3 are shared c In this demo program, the operations on the semaphore 0 and semaphore 1 make sure at a time, there is only one core can modify the data in the mxcSemaBox0 and mxcSemaBox1 which are located in the sysram2. ## How to debug CM4 and RV32 cores at the same time -The document https://github.com/Analog-Devices-MSDK/VSCode-Maxim#debugging introduces how to debug both ARM and RISC-V cores using VSCode. +The document https://github.com/analogdevicesinc/VSCode-Maxim#debugging introduces how to debug both ARM and RISC-V cores using VSCode. This document will show how to debug both cores by sending commands in terminals. -(1) Setup the RISC-V debugger according to [RISC-V-Debugging-Guide](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki/RISC-V-Debugging-Guide). +(1) Setup the RISC-V debugger according to [RISC-V-Debugging-Guide](https://github.com/analogdevicesinc/VSCode-Maxim/wiki/RISC-V-Debugging-Guide). Note that doc is for MAX78000. For MAX32655EVKIT, in the folder of MaximSDK/Tools/OpenOCD/scripts/target, run command: `ln -s max78000_riscv.cfg MAX32655_riscv.cfg`. diff --git a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md +++ b/Examples/MAX32655/Dual_core_sync/Dual_core_sync_riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32655/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/External_Flash/.vscode/README.md b/Examples/MAX32655/External_Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/External_Flash/.vscode/README.md +++ b/Examples/MAX32655/External_Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/FTHR_I2C/.vscode/README.md b/Examples/MAX32655/FTHR_I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/FTHR_I2C/.vscode/README.md +++ b/Examples/MAX32655/FTHR_I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Flash/.vscode/README.md b/Examples/MAX32655/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Flash/.vscode/README.md +++ b/Examples/MAX32655/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Flash_CLI/.vscode/README.md b/Examples/MAX32655/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32655/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32655/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/GPIO/.vscode/README.md b/Examples/MAX32655/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/GPIO/.vscode/README.md +++ b/Examples/MAX32655/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Hello_World-riscv/.vscode/README.md b/Examples/MAX32655/Hello_World-riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Hello_World-riscv/.vscode/README.md +++ b/Examples/MAX32655/Hello_World-riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Hello_World/.vscode/README.md b/Examples/MAX32655/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Hello_World/.vscode/README.md +++ b/Examples/MAX32655/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32655/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C/.vscode/README.md b/Examples/MAX32655/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C/.vscode/README.md +++ b/Examples/MAX32655/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C_EEPROM/.vscode/README.md b/Examples/MAX32655/I2C_EEPROM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C_EEPROM/.vscode/README.md +++ b/Examples/MAX32655/I2C_EEPROM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C_MNGR/.vscode/README.md b/Examples/MAX32655/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32655/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C_SCAN/.vscode/README.md b/Examples/MAX32655/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32655/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C_Sensor/.vscode/README.md b/Examples/MAX32655/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32655/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md +++ b/Examples/MAX32655/I2C_Sensor_ADT7420/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2S/.vscode/README.md b/Examples/MAX32655/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/I2S/.vscode/README.md +++ b/Examples/MAX32655/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/I2S/project.mk b/Examples/MAX32655/I2S/project.mk index f068448db8a..c5bb8a2183b 100644 --- a/Examples/MAX32655/I2S/project.mk +++ b/Examples/MAX32655/I2S/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system +# https://analogdevicesinc.github.io/msdk/USERGUIDE/#build-system # ********************************************************** diff --git a/Examples/MAX32655/ICC/.vscode/README.md b/Examples/MAX32655/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/ICC/.vscode/README.md +++ b/Examples/MAX32655/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/LP/.vscode/README.md b/Examples/MAX32655/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/LP/.vscode/README.md +++ b/Examples/MAX32655/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/LPCMP/.vscode/README.md b/Examples/MAX32655/LPCMP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/LPCMP/.vscode/README.md +++ b/Examples/MAX32655/LPCMP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Library_Generate/.vscode/README.md b/Examples/MAX32655/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32655/Library_Generate/.vscode/README.md +++ b/Examples/MAX32655/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Library_Use/.vscode/README.md b/Examples/MAX32655/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Library_Use/.vscode/README.md +++ b/Examples/MAX32655/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Pulse_Train/.vscode/README.md b/Examples/MAX32655/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Pulse_Train/.vscode/README.md +++ b/Examples/MAX32655/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/RTC/.vscode/README.md b/Examples/MAX32655/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/RTC/.vscode/README.md +++ b/Examples/MAX32655/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/RTC_Backup/.vscode/README.md b/Examples/MAX32655/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32655/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md +++ b/Examples/MAX32655/RV_ARM_Loader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/SPI/.vscode/README.md b/Examples/MAX32655/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/SPI/.vscode/README.md +++ b/Examples/MAX32655/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/TFT_Demo/.vscode/README.md b/Examples/MAX32655/TFT_Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/TFT_Demo/.vscode/README.md +++ b/Examples/MAX32655/TFT_Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/TMR/.vscode/README.md b/Examples/MAX32655/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/TMR/.vscode/README.md +++ b/Examples/MAX32655/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/TRNG/.vscode/README.md b/Examples/MAX32655/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/TRNG/.vscode/README.md +++ b/Examples/MAX32655/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Temp_Monitor/.vscode/README.md b/Examples/MAX32655/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32655/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/UART/.vscode/README.md b/Examples/MAX32655/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/UART/.vscode/README.md +++ b/Examples/MAX32655/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/UCL/.vscode/README.md b/Examples/MAX32655/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32655/UCL/.vscode/README.md +++ b/Examples/MAX32655/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32655/UCL/Makefile b/Examples/MAX32655/UCL/Makefile index 4f0b5125395..e301ee3f70b 100644 --- a/Examples/MAX32655/UCL/Makefile +++ b/Examples/MAX32655/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32655/WUT/.vscode/README.md b/Examples/MAX32655/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/WUT/.vscode/README.md +++ b/Examples/MAX32655/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/Watchdog/.vscode/README.md b/Examples/MAX32655/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/Watchdog/.vscode/README.md +++ b/Examples/MAX32655/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32655/WearLeveling/.vscode/README.md b/Examples/MAX32655/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32655/WearLeveling/.vscode/README.md +++ b/Examples/MAX32655/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/README.md b/Examples/MAX32660/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32660/ARM-DSP/README.md +++ b/Examples/MAX32660/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32660/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Bootloader_Host/.vscode/README.md b/Examples/MAX32660/Bootloader_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Bootloader_Host/.vscode/README.md +++ b/Examples/MAX32660/Bootloader_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Coremark/.vscode/README.md b/Examples/MAX32660/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Coremark/.vscode/README.md +++ b/Examples/MAX32660/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/DMA/.vscode/README.md b/Examples/MAX32660/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/DMA/.vscode/README.md +++ b/Examples/MAX32660/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32660/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Flash/.vscode/README.md b/Examples/MAX32660/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Flash/.vscode/README.md +++ b/Examples/MAX32660/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Flash_CLI/.vscode/README.md b/Examples/MAX32660/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32660/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32660/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/GPIO/.vscode/README.md b/Examples/MAX32660/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/GPIO/.vscode/README.md +++ b/Examples/MAX32660/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Hello_World/.vscode/README.md b/Examples/MAX32660/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Hello_World/.vscode/README.md +++ b/Examples/MAX32660/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32660/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/I2C/.vscode/README.md b/Examples/MAX32660/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/I2C/.vscode/README.md +++ b/Examples/MAX32660/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/I2C_MNGR/.vscode/README.md b/Examples/MAX32660/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32660/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/I2C_SCAN/.vscode/README.md b/Examples/MAX32660/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32660/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/I2C_Sensor/.vscode/README.md b/Examples/MAX32660/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32660/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/I2S/.vscode/README.md b/Examples/MAX32660/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/I2S/.vscode/README.md +++ b/Examples/MAX32660/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/ICC/.vscode/README.md b/Examples/MAX32660/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/ICC/.vscode/README.md +++ b/Examples/MAX32660/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md b/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md +++ b/Examples/MAX32660/Info_Block_Usecase/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/LP/.vscode/README.md b/Examples/MAX32660/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/LP/.vscode/README.md +++ b/Examples/MAX32660/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Library_Generate/.vscode/README.md b/Examples/MAX32660/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32660/Library_Generate/.vscode/README.md +++ b/Examples/MAX32660/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Library_Use/.vscode/README.md b/Examples/MAX32660/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Library_Use/.vscode/README.md +++ b/Examples/MAX32660/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/RTC/.vscode/README.md b/Examples/MAX32660/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/RTC/.vscode/README.md +++ b/Examples/MAX32660/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/RTC_Backup/.vscode/README.md b/Examples/MAX32660/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32660/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/SPI/.vscode/README.md b/Examples/MAX32660/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/SPI/.vscode/README.md +++ b/Examples/MAX32660/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/SPIMSS/.vscode/README.md b/Examples/MAX32660/SPIMSS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/SPIMSS/.vscode/README.md +++ b/Examples/MAX32660/SPIMSS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md b/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md +++ b/Examples/MAX32660/SPIMSS_DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32660/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md b/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md +++ b/Examples/MAX32660/SecureROM_BL_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/TMR/.vscode/README.md b/Examples/MAX32660/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/TMR/.vscode/README.md +++ b/Examples/MAX32660/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/Temp_Monitor/.vscode/README.md b/Examples/MAX32660/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32660/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/UART/.vscode/README.md b/Examples/MAX32660/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/UART/.vscode/README.md +++ b/Examples/MAX32660/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/UART_Wakeup/.vscode/README.md b/Examples/MAX32660/UART_Wakeup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/UART_Wakeup/.vscode/README.md +++ b/Examples/MAX32660/UART_Wakeup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/UART_Wakeup/README.md b/Examples/MAX32660/UART_Wakeup/README.md index 9f85ecc2c27..bc6a9dfd330 100644 --- a/Examples/MAX32660/UART_Wakeup/README.md +++ b/Examples/MAX32660/UART_Wakeup/README.md @@ -7,7 +7,7 @@ This example demonstrates using the UART (console UART) as a wake-up source from ### Project Usage -Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analog-devices-msdk.github.io/msdk/USERGUIDE/)**. +Universal instructions on building, flashing, and debugging this project can be found in the **[MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/)**. ### Project-Specific Build Notes diff --git a/Examples/MAX32660/Watchdog/.vscode/README.md b/Examples/MAX32660/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/Watchdog/.vscode/README.md +++ b/Examples/MAX32660/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32660/WearLeveling/.vscode/README.md b/Examples/MAX32660/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32660/WearLeveling/.vscode/README.md +++ b/Examples/MAX32660/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ADC/.vscode/README.md b/Examples/MAX32662/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ADC/.vscode/README.md +++ b/Examples/MAX32662/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/README.md b/Examples/MAX32662/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32662/ARM-DSP/README.md +++ b/Examples/MAX32662/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32662/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Bootloader_Host/.vscode/README.md b/Examples/MAX32662/Bootloader_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Bootloader_Host/.vscode/README.md +++ b/Examples/MAX32662/Bootloader_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/CAN/.vscode/README.md b/Examples/MAX32662/CAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/CAN/.vscode/README.md +++ b/Examples/MAX32662/CAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Coremark/.vscode/README.md b/Examples/MAX32662/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Coremark/.vscode/README.md +++ b/Examples/MAX32662/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/DMA/.vscode/README.md b/Examples/MAX32662/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/DMA/.vscode/README.md +++ b/Examples/MAX32662/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Demo/.vscode/README.md b/Examples/MAX32662/Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Demo/.vscode/README.md +++ b/Examples/MAX32662/Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32662/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Flash/.vscode/README.md b/Examples/MAX32662/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Flash/.vscode/README.md +++ b/Examples/MAX32662/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Flash_CLI/.vscode/README.md b/Examples/MAX32662/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32662/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/GPIO/.vscode/README.md b/Examples/MAX32662/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/GPIO/.vscode/README.md +++ b/Examples/MAX32662/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Hello_World/.vscode/README.md b/Examples/MAX32662/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Hello_World/.vscode/README.md +++ b/Examples/MAX32662/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32662/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/I2C/.vscode/README.md b/Examples/MAX32662/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/I2C/.vscode/README.md +++ b/Examples/MAX32662/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/I2C_MNGR/.vscode/README.md b/Examples/MAX32662/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32662/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/I2C_SCAN/.vscode/README.md b/Examples/MAX32662/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32662/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/I2C_Sensor/.vscode/README.md b/Examples/MAX32662/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32662/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/I2S/.vscode/README.md b/Examples/MAX32662/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/I2S/.vscode/README.md +++ b/Examples/MAX32662/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/ICC/.vscode/README.md b/Examples/MAX32662/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/ICC/.vscode/README.md +++ b/Examples/MAX32662/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md b/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md +++ b/Examples/MAX32662/Info_Block_Usecase/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/LP/.vscode/README.md b/Examples/MAX32662/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/LP/.vscode/README.md +++ b/Examples/MAX32662/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Library_Generate/.vscode/README.md b/Examples/MAX32662/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32662/Library_Generate/.vscode/README.md +++ b/Examples/MAX32662/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Library_Use/.vscode/README.md b/Examples/MAX32662/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Library_Use/.vscode/README.md +++ b/Examples/MAX32662/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/RTC/.vscode/README.md b/Examples/MAX32662/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/RTC/.vscode/README.md +++ b/Examples/MAX32662/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/RTC_Backup/.vscode/README.md b/Examples/MAX32662/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32662/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32662/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/SPI/.vscode/README.md b/Examples/MAX32662/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/SPI/.vscode/README.md +++ b/Examples/MAX32662/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32662/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/TMR/.vscode/README.md b/Examples/MAX32662/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/TMR/.vscode/README.md +++ b/Examples/MAX32662/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/Temp_Monitor/.vscode/README.md b/Examples/MAX32662/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32662/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/UART/.vscode/README.md b/Examples/MAX32662/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/UART/.vscode/README.md +++ b/Examples/MAX32662/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/UART_Wakeup/.vscode/README.md b/Examples/MAX32662/UART_Wakeup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/UART_Wakeup/.vscode/README.md +++ b/Examples/MAX32662/UART_Wakeup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/UCL/.vscode/README.md b/Examples/MAX32662/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32662/UCL/.vscode/README.md +++ b/Examples/MAX32662/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32662/UCL/Makefile b/Examples/MAX32662/UCL/Makefile index 9a5787a5a79..afb0e6e6111 100644 --- a/Examples/MAX32662/UCL/Makefile +++ b/Examples/MAX32662/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32662/Watchdog/.vscode/README.md b/Examples/MAX32662/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/Watchdog/.vscode/README.md +++ b/Examples/MAX32662/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32662/WearLeveling/.vscode/README.md b/Examples/MAX32662/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32662/WearLeveling/.vscode/README.md +++ b/Examples/MAX32662/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ADC/.vscode/README.md b/Examples/MAX32665/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ADC/.vscode/README.md +++ b/Examples/MAX32665/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100644 --- a/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md +++ b/Examples/MAX32665/ADT7320_TempMonitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/AES/.vscode/README.md b/Examples/MAX32665/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/AES/.vscode/README.md +++ b/Examples/MAX32665/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/README.md b/Examples/MAX32665/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32665/ARM-DSP/README.md +++ b/Examples/MAX32665/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32665/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/AUDIO_Playback/.vscode/README.md b/Examples/MAX32665/AUDIO_Playback/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100644 --- a/Examples/MAX32665/AUDIO_Playback/.vscode/README.md +++ b/Examples/MAX32665/AUDIO_Playback/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE4_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE5_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_FreeRTOS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_LR_Central/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_LR_Peripheral/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_datc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_dats/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_fcc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_fit/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_mcs/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_otac/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_otas/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/BLE_periph/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/Bootloader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/Bootloader_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md +++ b/Examples/MAX32665/Bluetooth/RF_Test/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Bluetooth/RF_Test/project.mk b/Examples/MAX32665/Bluetooth/RF_Test/project.mk index 233f8d87379..c74e6f2baa2 100644 --- a/Examples/MAX32665/Bluetooth/RF_Test/project.mk +++ b/Examples/MAX32665/Bluetooth/RF_Test/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX32665/CRC/.vscode/README.md b/Examples/MAX32665/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/CRC/.vscode/README.md +++ b/Examples/MAX32665/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Coremark/.vscode/README.md b/Examples/MAX32665/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Coremark/.vscode/README.md +++ b/Examples/MAX32665/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/DES/.vscode/README.md b/Examples/MAX32665/DES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/DES/.vscode/README.md +++ b/Examples/MAX32665/DES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/DMA/.vscode/README.md b/Examples/MAX32665/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/DMA/.vscode/README.md +++ b/Examples/MAX32665/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Demo/.vscode/README.md b/Examples/MAX32665/Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Demo/.vscode/README.md +++ b/Examples/MAX32665/Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Display/.vscode/README.md b/Examples/MAX32665/Display/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Display/.vscode/README.md +++ b/Examples/MAX32665/Display/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ECC/.vscode/README.md b/Examples/MAX32665/ECC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ECC/.vscode/README.md +++ b/Examples/MAX32665/ECC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32665/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Flash/.vscode/README.md b/Examples/MAX32665/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Flash/.vscode/README.md +++ b/Examples/MAX32665/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Flash_CLI/.vscode/README.md b/Examples/MAX32665/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32665/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32665/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/GPIO/.vscode/README.md b/Examples/MAX32665/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/GPIO/.vscode/README.md +++ b/Examples/MAX32665/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/HTMR/.vscode/README.md b/Examples/MAX32665/HTMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/HTMR/.vscode/README.md +++ b/Examples/MAX32665/HTMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Hash/.vscode/README.md b/Examples/MAX32665/Hash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Hash/.vscode/README.md +++ b/Examples/MAX32665/Hash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Hello_World/.vscode/README.md b/Examples/MAX32665/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Hello_World/.vscode/README.md +++ b/Examples/MAX32665/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32665/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/I2C/.vscode/README.md b/Examples/MAX32665/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/I2C/.vscode/README.md +++ b/Examples/MAX32665/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/I2C_MNGR/.vscode/README.md b/Examples/MAX32665/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32665/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/I2C_SCAN/.vscode/README.md b/Examples/MAX32665/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32665/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/I2C_Sensor/.vscode/README.md b/Examples/MAX32665/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32665/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/ICC/.vscode/README.md b/Examples/MAX32665/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/ICC/.vscode/README.md +++ b/Examples/MAX32665/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/LP/.vscode/README.md b/Examples/MAX32665/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/LP/.vscode/README.md +++ b/Examples/MAX32665/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Library_Generate/.vscode/README.md b/Examples/MAX32665/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32665/Library_Generate/.vscode/README.md +++ b/Examples/MAX32665/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Library_Use/.vscode/README.md b/Examples/MAX32665/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Library_Use/.vscode/README.md +++ b/Examples/MAX32665/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/MAA/.vscode/README.md b/Examples/MAX32665/MAA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/MAA/.vscode/README.md +++ b/Examples/MAX32665/MAA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/OTP_Dump/.vscode/README.md b/Examples/MAX32665/OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/OTP_Dump/.vscode/README.md +++ b/Examples/MAX32665/OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/OTP_Dump/project.mk b/Examples/MAX32665/OTP_Dump/project.mk index 67f14bba4d2..b19b2158de4 100644 --- a/Examples/MAX32665/OTP_Dump/project.mk +++ b/Examples/MAX32665/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://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX32665/OWM/.vscode/README.md b/Examples/MAX32665/OWM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/OWM/.vscode/README.md +++ b/Examples/MAX32665/OWM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Pulse_Train/.vscode/README.md b/Examples/MAX32665/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Pulse_Train/.vscode/README.md +++ b/Examples/MAX32665/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/RPU/.vscode/README.md b/Examples/MAX32665/RPU/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/RPU/.vscode/README.md +++ b/Examples/MAX32665/RPU/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/RTC/.vscode/README.md b/Examples/MAX32665/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/RTC/.vscode/README.md +++ b/Examples/MAX32665/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/RTC_Backup/.vscode/README.md b/Examples/MAX32665/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32665/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32665/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SDHC_FAT/.vscode/README.md b/Examples/MAX32665/SDHC_FAT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SDHC_FAT/.vscode/README.md +++ b/Examples/MAX32665/SDHC_FAT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SDHC_Raw/.vscode/README.md b/Examples/MAX32665/SDHC_Raw/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SDHC_Raw/.vscode/README.md +++ b/Examples/MAX32665/SDHC_Raw/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SPI/.vscode/README.md b/Examples/MAX32665/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SPI/.vscode/README.md +++ b/Examples/MAX32665/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SPIXF/.vscode/README.md b/Examples/MAX32665/SPIXF/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SPIXF/.vscode/README.md +++ b/Examples/MAX32665/SPIXF/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md b/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md +++ b/Examples/MAX32665/SPIXF_SFCC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SPIXR/.vscode/README.md b/Examples/MAX32665/SPIXR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SPIXR/.vscode/README.md +++ b/Examples/MAX32665/SPIXR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SPI_3Wire/.vscode/README.md b/Examples/MAX32665/SPI_3Wire/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100644 --- a/Examples/MAX32665/SPI_3Wire/.vscode/README.md +++ b/Examples/MAX32665/SPI_3Wire/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/SRCC/.vscode/README.md b/Examples/MAX32665/SRCC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/SRCC/.vscode/README.md +++ b/Examples/MAX32665/SRCC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Semaphore/.vscode/README.md b/Examples/MAX32665/Semaphore/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Semaphore/.vscode/README.md +++ b/Examples/MAX32665/Semaphore/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/TMR/.vscode/README.md b/Examples/MAX32665/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/TMR/.vscode/README.md +++ b/Examples/MAX32665/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/TRNG/.vscode/README.md b/Examples/MAX32665/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/TRNG/.vscode/README.md +++ b/Examples/MAX32665/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Temp_Monitor/.vscode/README.md b/Examples/MAX32665/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32665/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/UART/.vscode/README.md b/Examples/MAX32665/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/UART/.vscode/README.md +++ b/Examples/MAX32665/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/UCL/.vscode/README.md b/Examples/MAX32665/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32665/UCL/.vscode/README.md +++ b/Examples/MAX32665/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32665/UCL/Makefile b/Examples/MAX32665/UCL/Makefile index 0603d275f81..a8024f96926 100644 --- a/Examples/MAX32665/UCL/Makefile +++ b/Examples/MAX32665/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md +++ b/Examples/MAX32665/USB/USB_CDCACM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md +++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md +++ b/Examples/MAX32665/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md +++ b/Examples/MAX32665/USB/USB_HIDKeyboard/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md +++ b/Examples/MAX32665/USB/USB_MassStorage/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/WUT/.vscode/README.md b/Examples/MAX32665/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/WUT/.vscode/README.md +++ b/Examples/MAX32665/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/Watchdog/.vscode/README.md b/Examples/MAX32665/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/Watchdog/.vscode/README.md +++ b/Examples/MAX32665/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32665/WearLeveling/.vscode/README.md b/Examples/MAX32665/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32665/WearLeveling/.vscode/README.md +++ b/Examples/MAX32665/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/AES/.vscode/README.md b/Examples/MAX32670/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/AES/.vscode/README.md +++ b/Examples/MAX32670/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/README.md b/Examples/MAX32670/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32670/ARM-DSP/README.md +++ b/Examples/MAX32670/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32670/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/CRC/.vscode/README.md b/Examples/MAX32670/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/CRC/.vscode/README.md +++ b/Examples/MAX32670/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Coremark/.vscode/README.md b/Examples/MAX32670/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Coremark/.vscode/README.md +++ b/Examples/MAX32670/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/DMA/.vscode/README.md b/Examples/MAX32670/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/DMA/.vscode/README.md +++ b/Examples/MAX32670/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32670/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/EXT_CLK/.vscode/README.md b/Examples/MAX32670/EXT_CLK/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/EXT_CLK/.vscode/README.md +++ b/Examples/MAX32670/EXT_CLK/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Flash/.vscode/README.md b/Examples/MAX32670/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Flash/.vscode/README.md +++ b/Examples/MAX32670/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Flash_CLI/.vscode/README.md b/Examples/MAX32670/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32670/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32670/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/GPIO/.vscode/README.md b/Examples/MAX32670/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/GPIO/.vscode/README.md +++ b/Examples/MAX32670/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Hello_World/.vscode/README.md b/Examples/MAX32670/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Hello_World/.vscode/README.md +++ b/Examples/MAX32670/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32670/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/I2C/.vscode/README.md b/Examples/MAX32670/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/I2C/.vscode/README.md +++ b/Examples/MAX32670/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/I2C_MNGR/.vscode/README.md b/Examples/MAX32670/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32670/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/I2C_SCAN/.vscode/README.md b/Examples/MAX32670/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32670/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/I2C_Sensor/.vscode/README.md b/Examples/MAX32670/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32670/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/I2S/.vscode/README.md b/Examples/MAX32670/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/I2S/.vscode/README.md +++ b/Examples/MAX32670/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/ICC/.vscode/README.md b/Examples/MAX32670/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/ICC/.vscode/README.md +++ b/Examples/MAX32670/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/LP/.vscode/README.md b/Examples/MAX32670/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/LP/.vscode/README.md +++ b/Examples/MAX32670/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Library_Generate/.vscode/README.md b/Examples/MAX32670/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32670/Library_Generate/.vscode/README.md +++ b/Examples/MAX32670/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Library_Use/.vscode/README.md b/Examples/MAX32670/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Library_Use/.vscode/README.md +++ b/Examples/MAX32670/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/RTC/.vscode/README.md b/Examples/MAX32670/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/RTC/.vscode/README.md +++ b/Examples/MAX32670/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/RTC_Backup/.vscode/README.md b/Examples/MAX32670/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32670/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/SPI/.vscode/README.md b/Examples/MAX32670/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/SPI/.vscode/README.md +++ b/Examples/MAX32670/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32670/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/SPI_Usecase/.vscode/README.md b/Examples/MAX32670/SPI_Usecase/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/SPI_Usecase/.vscode/README.md +++ b/Examples/MAX32670/SPI_Usecase/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md b/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md +++ b/Examples/MAX32670/SecureROM_BL_Host/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/TMR/.vscode/README.md b/Examples/MAX32670/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/TMR/.vscode/README.md +++ b/Examples/MAX32670/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/TRNG/.vscode/README.md b/Examples/MAX32670/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/TRNG/.vscode/README.md +++ b/Examples/MAX32670/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/Temp_Monitor/.vscode/README.md b/Examples/MAX32670/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32670/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/UART/.vscode/README.md b/Examples/MAX32670/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/UART/.vscode/README.md +++ b/Examples/MAX32670/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/UCL/.vscode/README.md b/Examples/MAX32670/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32670/UCL/.vscode/README.md +++ b/Examples/MAX32670/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32670/UCL/Makefile b/Examples/MAX32670/UCL/Makefile index 50baec2f51b..b170edd4a9f 100644 --- a/Examples/MAX32670/UCL/Makefile +++ b/Examples/MAX32670/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32670/Watchdog/.vscode/README.md b/Examples/MAX32670/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/Watchdog/.vscode/README.md +++ b/Examples/MAX32670/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32670/WearLeveling/.vscode/README.md b/Examples/MAX32670/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32670/WearLeveling/.vscode/README.md +++ b/Examples/MAX32670/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ADC/.vscode/README.md b/Examples/MAX32672/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ADC/.vscode/README.md +++ b/Examples/MAX32672/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/AES/.vscode/README.md b/Examples/MAX32672/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/AES/.vscode/README.md +++ b/Examples/MAX32672/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/README.md b/Examples/MAX32672/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32672/ARM-DSP/README.md +++ b/Examples/MAX32672/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32672/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/CRC/.vscode/README.md b/Examples/MAX32672/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/CRC/.vscode/README.md +++ b/Examples/MAX32672/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/CTB_AES/.vscode/README.md b/Examples/MAX32672/CTB_AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/CTB_AES/.vscode/README.md +++ b/Examples/MAX32672/CTB_AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Comparator/.vscode/README.md b/Examples/MAX32672/Comparator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Comparator/.vscode/README.md +++ b/Examples/MAX32672/Comparator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Coremark/.vscode/README.md b/Examples/MAX32672/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Coremark/.vscode/README.md +++ b/Examples/MAX32672/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/DMA/.vscode/README.md b/Examples/MAX32672/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/DMA/.vscode/README.md +++ b/Examples/MAX32672/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Demo/.vscode/README.md b/Examples/MAX32672/Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Demo/.vscode/README.md +++ b/Examples/MAX32672/Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Display/.vscode/README.md b/Examples/MAX32672/Display/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Display/.vscode/README.md +++ b/Examples/MAX32672/Display/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32672/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Flash/.vscode/README.md b/Examples/MAX32672/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Flash/.vscode/README.md +++ b/Examples/MAX32672/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Flash_CLI/.vscode/README.md b/Examples/MAX32672/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32672/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32672/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/GPIO/.vscode/README.md b/Examples/MAX32672/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/GPIO/.vscode/README.md +++ b/Examples/MAX32672/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Hello_World/.vscode/README.md b/Examples/MAX32672/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Hello_World/.vscode/README.md +++ b/Examples/MAX32672/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32672/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/I2C/.vscode/README.md b/Examples/MAX32672/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/I2C/.vscode/README.md +++ b/Examples/MAX32672/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/I2C_MNGR/.vscode/README.md b/Examples/MAX32672/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32672/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/I2C_SCAN/.vscode/README.md b/Examples/MAX32672/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32672/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/I2C_Sensor/.vscode/README.md b/Examples/MAX32672/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32672/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/I2S/.vscode/README.md b/Examples/MAX32672/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/I2S/.vscode/README.md +++ b/Examples/MAX32672/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/ICC/.vscode/README.md b/Examples/MAX32672/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/ICC/.vscode/README.md +++ b/Examples/MAX32672/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/LP/.vscode/README.md b/Examples/MAX32672/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/LP/.vscode/README.md +++ b/Examples/MAX32672/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Library_Generate/.vscode/README.md b/Examples/MAX32672/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32672/Library_Generate/.vscode/README.md +++ b/Examples/MAX32672/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Library_Use/.vscode/README.md b/Examples/MAX32672/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Library_Use/.vscode/README.md +++ b/Examples/MAX32672/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/OLED_Demo/.vscode/README.md b/Examples/MAX32672/OLED_Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/OLED_Demo/.vscode/README.md +++ b/Examples/MAX32672/OLED_Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/QDEC/.vscode/README.md b/Examples/MAX32672/QDEC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/QDEC/.vscode/README.md +++ b/Examples/MAX32672/QDEC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/RTC/.vscode/README.md b/Examples/MAX32672/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/RTC/.vscode/README.md +++ b/Examples/MAX32672/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/RTC_Backup/.vscode/README.md b/Examples/MAX32672/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32672/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32672/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/SPI/.vscode/README.md b/Examples/MAX32672/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/SPI/.vscode/README.md +++ b/Examples/MAX32672/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md b/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX32672/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/TMR/.vscode/README.md b/Examples/MAX32672/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/TMR/.vscode/README.md +++ b/Examples/MAX32672/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/TRNG/.vscode/README.md b/Examples/MAX32672/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/TRNG/.vscode/README.md +++ b/Examples/MAX32672/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/Temp_Monitor/.vscode/README.md b/Examples/MAX32672/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32672/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/UART/.vscode/README.md b/Examples/MAX32672/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/UART/.vscode/README.md +++ b/Examples/MAX32672/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/UCL/.vscode/README.md b/Examples/MAX32672/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32672/UCL/.vscode/README.md +++ b/Examples/MAX32672/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32672/UCL/Makefile b/Examples/MAX32672/UCL/Makefile index f26c2b63e5b..eb56275f727 100644 --- a/Examples/MAX32672/UCL/Makefile +++ b/Examples/MAX32672/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32672/Watchdog/.vscode/README.md b/Examples/MAX32672/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/Watchdog/.vscode/README.md +++ b/Examples/MAX32672/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32672/WearLeveling/.vscode/README.md b/Examples/MAX32672/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32672/WearLeveling/.vscode/README.md +++ b/Examples/MAX32672/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ADC/.vscode/README.md b/Examples/MAX32675/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ADC/.vscode/README.md +++ b/Examples/MAX32675/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/AES/.vscode/README.md b/Examples/MAX32675/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/AES/.vscode/README.md +++ b/Examples/MAX32675/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/AFE_DAC/.vscode/README.md b/Examples/MAX32675/AFE_DAC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/AFE_DAC/.vscode/README.md +++ b/Examples/MAX32675/AFE_DAC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/README.md b/Examples/MAX32675/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32675/ARM-DSP/README.md +++ b/Examples/MAX32675/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32675/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/CRC/.vscode/README.md b/Examples/MAX32675/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/CRC/.vscode/README.md +++ b/Examples/MAX32675/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Coremark/.vscode/README.md b/Examples/MAX32675/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Coremark/.vscode/README.md +++ b/Examples/MAX32675/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/DMA/.vscode/README.md b/Examples/MAX32675/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/DMA/.vscode/README.md +++ b/Examples/MAX32675/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32675/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Flash/.vscode/README.md b/Examples/MAX32675/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Flash/.vscode/README.md +++ b/Examples/MAX32675/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Flash_CLI/.vscode/README.md b/Examples/MAX32675/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32675/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32675/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/GPIO/.vscode/README.md b/Examples/MAX32675/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/GPIO/.vscode/README.md +++ b/Examples/MAX32675/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/HART_UART/.vscode/README.md b/Examples/MAX32675/HART_UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/HART_UART/.vscode/README.md +++ b/Examples/MAX32675/HART_UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Hello_World/.vscode/README.md b/Examples/MAX32675/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Hello_World/.vscode/README.md +++ b/Examples/MAX32675/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32675/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/I2C/.vscode/README.md b/Examples/MAX32675/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/I2C/.vscode/README.md +++ b/Examples/MAX32675/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/I2C_MNGR/.vscode/README.md b/Examples/MAX32675/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32675/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/I2C_SCAN/.vscode/README.md b/Examples/MAX32675/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32675/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/I2C_Sensor/.vscode/README.md b/Examples/MAX32675/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32675/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/I2S/.vscode/README.md b/Examples/MAX32675/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/I2S/.vscode/README.md +++ b/Examples/MAX32675/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/ICC/.vscode/README.md b/Examples/MAX32675/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/ICC/.vscode/README.md +++ b/Examples/MAX32675/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/LP/.vscode/README.md b/Examples/MAX32675/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/LP/.vscode/README.md +++ b/Examples/MAX32675/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Library_Generate/.vscode/README.md b/Examples/MAX32675/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32675/Library_Generate/.vscode/README.md +++ b/Examples/MAX32675/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Library_Use/.vscode/README.md b/Examples/MAX32675/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Library_Use/.vscode/README.md +++ b/Examples/MAX32675/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/SPI/.vscode/README.md b/Examples/MAX32675/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/SPI/.vscode/README.md +++ b/Examples/MAX32675/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/TMR/.vscode/README.md b/Examples/MAX32675/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/TMR/.vscode/README.md +++ b/Examples/MAX32675/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/TRNG/.vscode/README.md b/Examples/MAX32675/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/TRNG/.vscode/README.md +++ b/Examples/MAX32675/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/UART/.vscode/README.md b/Examples/MAX32675/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/UART/.vscode/README.md +++ b/Examples/MAX32675/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/Watchdog/.vscode/README.md b/Examples/MAX32675/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/Watchdog/.vscode/README.md +++ b/Examples/MAX32675/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32675/WearLeveling/.vscode/README.md b/Examples/MAX32675/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32675/WearLeveling/.vscode/README.md +++ b/Examples/MAX32675/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ADC/.vscode/README.md b/Examples/MAX32680/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ADC/.vscode/README.md +++ b/Examples/MAX32680/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/AES/.vscode/README.md b/Examples/MAX32680/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/AES/.vscode/README.md +++ b/Examples/MAX32680/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/AFE_ADC/.vscode/README.md b/Examples/MAX32680/AFE_ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/AFE_ADC/.vscode/README.md +++ b/Examples/MAX32680/AFE_ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/README.md b/Examples/MAX32680/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32680/ARM-DSP/README.md +++ b/Examples/MAX32680/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32680/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md +++ b/Examples/MAX32680/Bluetooth/BLE4_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md +++ b/Examples/MAX32680/Bluetooth/BLE_dats/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/CRC/.vscode/README.md b/Examples/MAX32680/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/CRC/.vscode/README.md +++ b/Examples/MAX32680/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Coremark/.vscode/README.md b/Examples/MAX32680/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Coremark/.vscode/README.md +++ b/Examples/MAX32680/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/DMA/.vscode/README.md b/Examples/MAX32680/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/DMA/.vscode/README.md +++ b/Examples/MAX32680/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32680/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Flash/.vscode/README.md b/Examples/MAX32680/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Flash/.vscode/README.md +++ b/Examples/MAX32680/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Flash_CLI/.vscode/README.md b/Examples/MAX32680/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32680/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32680/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/GPIO/.vscode/README.md b/Examples/MAX32680/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/GPIO/.vscode/README.md +++ b/Examples/MAX32680/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/HART_UART/.vscode/README.md b/Examples/MAX32680/HART_UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/HART_UART/.vscode/README.md +++ b/Examples/MAX32680/HART_UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Hello_World-riscv/.vscode/README.md b/Examples/MAX32680/Hello_World-riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Hello_World-riscv/.vscode/README.md +++ b/Examples/MAX32680/Hello_World-riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Hello_World/.vscode/README.md b/Examples/MAX32680/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Hello_World/.vscode/README.md +++ b/Examples/MAX32680/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32680/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/I2C/.vscode/README.md b/Examples/MAX32680/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/I2C/.vscode/README.md +++ b/Examples/MAX32680/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/I2C_MNGR/.vscode/README.md b/Examples/MAX32680/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32680/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/I2C_SCAN/.vscode/README.md b/Examples/MAX32680/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32680/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/I2C_Sensor/.vscode/README.md b/Examples/MAX32680/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32680/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/I2S/.vscode/README.md b/Examples/MAX32680/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/I2S/.vscode/README.md +++ b/Examples/MAX32680/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/ICC/.vscode/README.md b/Examples/MAX32680/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/ICC/.vscode/README.md +++ b/Examples/MAX32680/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/LP/.vscode/README.md b/Examples/MAX32680/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/LP/.vscode/README.md +++ b/Examples/MAX32680/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Library_Generate/.vscode/README.md b/Examples/MAX32680/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32680/Library_Generate/.vscode/README.md +++ b/Examples/MAX32680/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Library_Use/.vscode/README.md b/Examples/MAX32680/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Library_Use/.vscode/README.md +++ b/Examples/MAX32680/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Pulse_Train/.vscode/README.md b/Examples/MAX32680/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Pulse_Train/.vscode/README.md +++ b/Examples/MAX32680/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md +++ b/Examples/MAX32680/RV_ARM_Loader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/SPI/.vscode/README.md b/Examples/MAX32680/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/SPI/.vscode/README.md +++ b/Examples/MAX32680/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/TMR/.vscode/README.md b/Examples/MAX32680/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/TMR/.vscode/README.md +++ b/Examples/MAX32680/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/TRNG/.vscode/README.md b/Examples/MAX32680/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/TRNG/.vscode/README.md +++ b/Examples/MAX32680/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Temp_Monitor/.vscode/README.md b/Examples/MAX32680/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32680/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/UART/.vscode/README.md b/Examples/MAX32680/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/UART/.vscode/README.md +++ b/Examples/MAX32680/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/WUT/.vscode/README.md b/Examples/MAX32680/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/WUT/.vscode/README.md +++ b/Examples/MAX32680/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/Watchdog/.vscode/README.md b/Examples/MAX32680/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/Watchdog/.vscode/README.md +++ b/Examples/MAX32680/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32680/WearLeveling/.vscode/README.md b/Examples/MAX32680/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32680/WearLeveling/.vscode/README.md +++ b/Examples/MAX32680/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ADC/.vscode/README.md b/Examples/MAX32690/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ADC/.vscode/README.md +++ b/Examples/MAX32690/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/README.md b/Examples/MAX32690/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX32690/ARM-DSP/README.md +++ b/Examples/MAX32690/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX32690/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE4_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE5_ctr/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_FreeRTOS/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_datc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_dats/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_fcc/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_fit/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_mcs/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_otac/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_otas/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/BLE_periph/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/Bootloader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md +++ b/Examples/MAX32690/Bluetooth/RF_Test/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Bluetooth/RF_Test/project.mk b/Examples/MAX32690/Bluetooth/RF_Test/project.mk index 233f8d87379..c74e6f2baa2 100644 --- a/Examples/MAX32690/Bluetooth/RF_Test/project.mk +++ b/Examples/MAX32690/Bluetooth/RF_Test/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX32690/CAN/.vscode/README.md b/Examples/MAX32690/CAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/CAN/.vscode/README.md +++ b/Examples/MAX32690/CAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/CRC/.vscode/README.md b/Examples/MAX32690/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/CRC/.vscode/README.md +++ b/Examples/MAX32690/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/CTB_AES/.vscode/README.md b/Examples/MAX32690/CTB_AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/CTB_AES/.vscode/README.md +++ b/Examples/MAX32690/CTB_AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Coremark/.vscode/README.md b/Examples/MAX32690/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Coremark/.vscode/README.md +++ b/Examples/MAX32690/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/DMA/.vscode/README.md b/Examples/MAX32690/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/DMA/.vscode/README.md +++ b/Examples/MAX32690/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md b/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX32690/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Flash/.vscode/README.md b/Examples/MAX32690/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Flash/.vscode/README.md +++ b/Examples/MAX32690/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Flash_CLI/.vscode/README.md b/Examples/MAX32690/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Flash_CLI/.vscode/README.md +++ b/Examples/MAX32690/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md b/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX32690/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/GPIO/.vscode/README.md b/Examples/MAX32690/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/GPIO/.vscode/README.md +++ b/Examples/MAX32690/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/HBMC/.vscode/README.md b/Examples/MAX32690/HBMC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/HBMC/.vscode/README.md +++ b/Examples/MAX32690/HBMC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Hash/.vscode/README.md b/Examples/MAX32690/Hash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Hash/.vscode/README.md +++ b/Examples/MAX32690/Hash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Hello_World/.vscode/README.md b/Examples/MAX32690/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Hello_World/.vscode/README.md +++ b/Examples/MAX32690/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md b/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX32690/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/I2C/.vscode/README.md b/Examples/MAX32690/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/I2C/.vscode/README.md +++ b/Examples/MAX32690/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/I2C_MNGR/.vscode/README.md b/Examples/MAX32690/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX32690/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/I2C_SCAN/.vscode/README.md b/Examples/MAX32690/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX32690/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/I2C_Sensor/.vscode/README.md b/Examples/MAX32690/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX32690/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/I2S/.vscode/README.md b/Examples/MAX32690/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/I2S/.vscode/README.md +++ b/Examples/MAX32690/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/ICC/.vscode/README.md b/Examples/MAX32690/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/ICC/.vscode/README.md +++ b/Examples/MAX32690/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/LP/.vscode/README.md b/Examples/MAX32690/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/LP/.vscode/README.md +++ b/Examples/MAX32690/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/LPCMP/.vscode/README.md b/Examples/MAX32690/LPCMP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/LPCMP/.vscode/README.md +++ b/Examples/MAX32690/LPCMP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Library_Generate/.vscode/README.md b/Examples/MAX32690/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX32690/Library_Generate/.vscode/README.md +++ b/Examples/MAX32690/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Library_Use/.vscode/README.md b/Examples/MAX32690/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Library_Use/.vscode/README.md +++ b/Examples/MAX32690/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Pulse_Train/.vscode/README.md b/Examples/MAX32690/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Pulse_Train/.vscode/README.md +++ b/Examples/MAX32690/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/RTC/.vscode/README.md b/Examples/MAX32690/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/RTC/.vscode/README.md +++ b/Examples/MAX32690/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/RTC_Backup/.vscode/README.md b/Examples/MAX32690/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/RTC_Backup/.vscode/README.md +++ b/Examples/MAX32690/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md b/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md +++ b/Examples/MAX32690/RV_ARM_Loader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md +++ b/Examples/MAX32690/SCPA_OTP_Dump/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/SPI/.vscode/README.md b/Examples/MAX32690/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/SPI/.vscode/README.md +++ b/Examples/MAX32690/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/TFT_Demo/.vscode/README.md b/Examples/MAX32690/TFT_Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/TFT_Demo/.vscode/README.md +++ b/Examples/MAX32690/TFT_Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/TMR/.vscode/README.md b/Examples/MAX32690/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/TMR/.vscode/README.md +++ b/Examples/MAX32690/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/TRNG/.vscode/README.md b/Examples/MAX32690/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/TRNG/.vscode/README.md +++ b/Examples/MAX32690/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Temp_Monitor/.vscode/README.md b/Examples/MAX32690/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX32690/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/UART/.vscode/README.md b/Examples/MAX32690/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/UART/.vscode/README.md +++ b/Examples/MAX32690/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/UCL/.vscode/README.md b/Examples/MAX32690/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX32690/UCL/.vscode/README.md +++ b/Examples/MAX32690/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX32690/UCL/Makefile b/Examples/MAX32690/UCL/Makefile index 43152551c31..44d88dc1eef 100644 --- a/Examples/MAX32690/UCL/Makefile +++ b/Examples/MAX32690/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md +++ b/Examples/MAX32690/USB/USB_CDCACM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md +++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md +++ b/Examples/MAX32690/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md +++ b/Examples/MAX32690/USB/USB_HIDKeyboard/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md +++ b/Examples/MAX32690/USB/USB_MassStorage/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/WUT/.vscode/README.md b/Examples/MAX32690/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/WUT/.vscode/README.md +++ b/Examples/MAX32690/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/Watchdog/.vscode/README.md b/Examples/MAX32690/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/Watchdog/.vscode/README.md +++ b/Examples/MAX32690/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX32690/WearLeveling/.vscode/README.md b/Examples/MAX32690/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX32690/WearLeveling/.vscode/README.md +++ b/Examples/MAX32690/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ADC/.vscode/README.md b/Examples/MAX78000/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ADC/.vscode/README.md +++ b/Examples/MAX78000/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/AES/.vscode/README.md b/Examples/MAX78000/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/AES/.vscode/README.md +++ b/Examples/MAX78000/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/README.md b/Examples/MAX78000/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX78000/ARM-DSP/README.md +++ b/Examples/MAX78000/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX78000/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md b/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/UNet-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/UNet-highres-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/actionrecognition-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/actionrecognition-demo/project.mk b/Examples/MAX78000/CNN/actionrecognition-demo/project.mk index d406ff46b9b..c0b8ebcb544 100644 --- a/Examples/MAX78000/CNN/actionrecognition-demo/project.mk +++ b/Examples/MAX78000/CNN/actionrecognition-demo/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/aisegment_unet-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md b/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md +++ b/Examples/MAX78000/CNN/aisegment_unet/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/asl/.vscode/README.md b/Examples/MAX78000/CNN/asl/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/asl/.vscode/README.md +++ b/Examples/MAX78000/CNN/asl/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/asl_demo/.vscode/README.md b/Examples/MAX78000/CNN/asl_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/asl_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/asl_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk b/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk index c04542b04e9..d2d0806dfc0 100644 --- a/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk +++ b/Examples/MAX78000/CNN/cam01_facedetect_demo/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100644 --- a/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk b/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk index 377b5830bfd..b32261783c4 100644 --- a/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk +++ b/Examples/MAX78000/CNN/cam02_facedetect_demo/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md b/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md +++ b/Examples/MAX78000/CNN/camvid_unet/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md b/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md +++ b/Examples/MAX78000/CNN/cats-dogs/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/cats-dogs_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-10-auto-test/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-10/.vscode/README.md b/Examples/MAX78000/CNN/cifar-10/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-10/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-10/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-100-mixed/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-100-residual/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-100-simplewide2x-mixed/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/cifar-100/.vscode/README.md b/Examples/MAX78000/CNN/cifar-100/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/cifar-100/.vscode/README.md +++ b/Examples/MAX78000/CNN/cifar-100/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/digit-detection-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/faceid_112/.vscode/README.md b/Examples/MAX78000/CNN/faceid_112/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/faceid_112/.vscode/README.md +++ b/Examples/MAX78000/CNN/faceid_112/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/faceid_112/project.mk b/Examples/MAX78000/CNN/faceid_112/project.mk index 0aea55bc677..8a29214e4f8 100644 --- a/Examples/MAX78000/CNN/faceid_112/project.mk +++ b/Examples/MAX78000/CNN/faceid_112/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md b/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md +++ b/Examples/MAX78000/CNN/facial_recognition/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md +++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/project.mk b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/project.mk index b02dc63ee07..aea5a8db111 100644 --- a/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/project.mk +++ b/Examples/MAX78000/CNN/facial_recognition/SDHC_weights/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX78000/CNN/facial_recognition/project.mk b/Examples/MAX78000/CNN/facial_recognition/project.mk index faf9d8210df..cb91b729561 100644 --- a/Examples/MAX78000/CNN/facial_recognition/project.mk +++ b/Examples/MAX78000/CNN/facial_recognition/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md +++ b/Examples/MAX78000/CNN/kws20_demo-riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md b/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/kws20_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md b/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md +++ b/Examples/MAX78000/CNN/kws20_v3/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md b/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md +++ b/Examples/MAX78000/CNN/mnist-riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/mnist/.vscode/README.md b/Examples/MAX78000/CNN/mnist/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/mnist/.vscode/README.md +++ b/Examples/MAX78000/CNN/mnist/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/rps-demo/.vscode/README.md b/Examples/MAX78000/CNN/rps-demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/rps-demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/rps-demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/rps/.vscode/README.md b/Examples/MAX78000/CNN/rps/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/rps/.vscode/README.md +++ b/Examples/MAX78000/CNN/rps/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md b/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md +++ b/Examples/MAX78000/CNN/snake_game_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md +++ b/Examples/MAX78000/CNN/svhn_tinierssd/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CRC/.vscode/README.md b/Examples/MAX78000/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CRC/.vscode/README.md +++ b/Examples/MAX78000/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CameraIF/.vscode/README.md b/Examples/MAX78000/CameraIF/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CameraIF/.vscode/README.md +++ b/Examples/MAX78000/CameraIF/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md b/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md +++ b/Examples/MAX78000/CameraIF_Debayer/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Coremark/.vscode/README.md b/Examples/MAX78000/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Coremark/.vscode/README.md +++ b/Examples/MAX78000/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/DMA/.vscode/README.md b/Examples/MAX78000/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/DMA/.vscode/README.md +++ b/Examples/MAX78000/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ECC/.vscode/README.md b/Examples/MAX78000/ECC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ECC/.vscode/README.md +++ b/Examples/MAX78000/ECC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md b/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX78000/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/FTHR_I2C/.vscode/README.md b/Examples/MAX78000/FTHR_I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/FTHR_I2C/.vscode/README.md +++ b/Examples/MAX78000/FTHR_I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/FTHR_SRAM/.vscode/README.md b/Examples/MAX78000/FTHR_SRAM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/FTHR_SRAM/.vscode/README.md +++ b/Examples/MAX78000/FTHR_SRAM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Flash/.vscode/README.md b/Examples/MAX78000/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Flash/.vscode/README.md +++ b/Examples/MAX78000/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Flash_CLI/.vscode/README.md b/Examples/MAX78000/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Flash_CLI/.vscode/README.md +++ b/Examples/MAX78000/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md b/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX78000/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/GPIO/.vscode/README.md b/Examples/MAX78000/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/GPIO/.vscode/README.md +++ b/Examples/MAX78000/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Hello_World/.vscode/README.md b/Examples/MAX78000/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Hello_World/.vscode/README.md +++ b/Examples/MAX78000/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md b/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX78000/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2C_ADXL343/.vscode/README.md b/Examples/MAX78000/I2C_ADXL343/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2C_ADXL343/.vscode/README.md +++ b/Examples/MAX78000/I2C_ADXL343/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2C_MNGR/.vscode/README.md b/Examples/MAX78000/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX78000/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2C_SCAN/.vscode/README.md b/Examples/MAX78000/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX78000/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2C_Sensor/.vscode/README.md b/Examples/MAX78000/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX78000/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2S/.vscode/README.md b/Examples/MAX78000/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2S/.vscode/README.md +++ b/Examples/MAX78000/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2S_DMA/.vscode/README.md b/Examples/MAX78000/I2S_DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2S_DMA/.vscode/README.md +++ b/Examples/MAX78000/I2S_DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md b/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md +++ b/Examples/MAX78000/I2S_DMA_Target/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ICC/.vscode/README.md b/Examples/MAX78000/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ICC/.vscode/README.md +++ b/Examples/MAX78000/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/ImgCapture/.vscode/README.md b/Examples/MAX78000/ImgCapture/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/ImgCapture/.vscode/README.md +++ b/Examples/MAX78000/ImgCapture/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/LP/.vscode/README.md b/Examples/MAX78000/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/LP/.vscode/README.md +++ b/Examples/MAX78000/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/LPCMP/.vscode/README.md b/Examples/MAX78000/LPCMP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/LPCMP/.vscode/README.md +++ b/Examples/MAX78000/LPCMP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Library_Generate/.vscode/README.md b/Examples/MAX78000/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX78000/Library_Generate/.vscode/README.md +++ b/Examples/MAX78000/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Library_Use/.vscode/README.md b/Examples/MAX78000/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Library_Use/.vscode/README.md +++ b/Examples/MAX78000/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Pulse_Train/.vscode/README.md b/Examples/MAX78000/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Pulse_Train/.vscode/README.md +++ b/Examples/MAX78000/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/RTC/.vscode/README.md b/Examples/MAX78000/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/RTC/.vscode/README.md +++ b/Examples/MAX78000/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/RTC_Backup/.vscode/README.md b/Examples/MAX78000/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/RTC_Backup/.vscode/README.md +++ b/Examples/MAX78000/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md b/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md +++ b/Examples/MAX78000/RV_ARM_Loader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/SDHC_FTHR/.vscode/README.md b/Examples/MAX78000/SDHC_FTHR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/SDHC_FTHR/.vscode/README.md +++ b/Examples/MAX78000/SDHC_FTHR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/SPI/.vscode/README.md b/Examples/MAX78000/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/SPI/.vscode/README.md +++ b/Examples/MAX78000/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/TFT_Demo/.vscode/README.md b/Examples/MAX78000/TFT_Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/TFT_Demo/.vscode/README.md +++ b/Examples/MAX78000/TFT_Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/TMR/.vscode/README.md b/Examples/MAX78000/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/TMR/.vscode/README.md +++ b/Examples/MAX78000/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/TRNG/.vscode/README.md b/Examples/MAX78000/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/TRNG/.vscode/README.md +++ b/Examples/MAX78000/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Temp_Monitor/.vscode/README.md b/Examples/MAX78000/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX78000/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/UART/.vscode/README.md b/Examples/MAX78000/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/UART/.vscode/README.md +++ b/Examples/MAX78000/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/UCL/.vscode/README.md b/Examples/MAX78000/UCL/.vscode/README.md index f57d4364851..cc0783881d1 100644 --- a/Examples/MAX78000/UCL/.vscode/README.md +++ b/Examples/MAX78000/UCL/.vscode/README.md @@ -4,14 +4,14 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) -* [Wiki](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/wiki) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) +* [Wiki](https://github.com/analogdevicesinc/VSCode-Maxim/wiki) * If it's not in the readme, check the wiki. * If it's not in the wiki, open a ticket! ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX-series](https://www.maximintegrated.com/en/products/microcontrollers.html) microcontrollers. The following features are supported: @@ -91,7 +91,7 @@ Ex: ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MaximSDK installation. @@ -413,7 +413,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the diff --git a/Examples/MAX78000/UCL/Makefile b/Examples/MAX78000/UCL/Makefile index d39d906a027..05e74689071 100644 --- a/Examples/MAX78000/UCL/Makefile +++ b/Examples/MAX78000/UCL/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX78000/WUT/.vscode/README.md b/Examples/MAX78000/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/WUT/.vscode/README.md +++ b/Examples/MAX78000/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/Watchdog/.vscode/README.md b/Examples/MAX78000/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/Watchdog/.vscode/README.md +++ b/Examples/MAX78000/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78000/WearLeveling/.vscode/README.md b/Examples/MAX78000/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78000/WearLeveling/.vscode/README.md +++ b/Examples/MAX78000/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ADC/.vscode/README.md b/Examples/MAX78002/ADC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ADC/.vscode/README.md +++ b/Examples/MAX78002/ADC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/AES/.vscode/README.md b/Examples/MAX78002/AES/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/AES/.vscode/README.md +++ b/Examples/MAX78002/AES/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/README.md b/Examples/MAX78002/ARM-DSP/README.md index 9bb2d50bedc..5e1d116671b 100644 --- a/Examples/MAX78002/ARM-DSP/README.md +++ b/Examples/MAX78002/ARM-DSP/README.md @@ -8,7 +8,7 @@ The projects in this folder are ports of ARM's DSP example projects that can be Debug launch configurations are included in each project, and should appear in the "Favorites" menu in Eclipse. -Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop) +Development with Visual Studio Code is also supported. See [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop) ## Software diff --git a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_bayes_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_class_marks_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_convolution_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_dotproduct_example_f32/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_fft_bin_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_fir_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_graphic_equalizer_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_linear_interp_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_matrix_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_signal_converge_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_sin_cos_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_svm_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md +++ b/Examples/MAX78002/ARM-DSP/arm_variance_example/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md +++ b/Examples/MAX78002/CNN/cifar-100-effnet2/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/Makefile b/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/Makefile index dd75af65ca4..6e6405de8ee 100644 --- a/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/Makefile +++ b/Examples/MAX78002/CNN/cifar-100-mobilenet-v2-0.75/Makefile @@ -25,7 +25,7 @@ # in "project.mk", on the command-line, or with system environment # variables. -# See https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# See https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # for more detailed instructions on how to use this system. # The detailed instructions mentioned above are easier to read than diff --git a/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md b/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md +++ b/Examples/MAX78002/CNN/facial_recognition/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/facial_recognition/project.mk b/Examples/MAX78002/CNN/facial_recognition/project.mk index 7910639131b..bca87adfca6 100644 --- a/Examples/MAX78002/CNN/facial_recognition/project.mk +++ b/Examples/MAX78002/CNN/facial_recognition/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md +++ b/Examples/MAX78002/CNN/imagenet-riscv/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/imagenet/.vscode/README.md b/Examples/MAX78002/CNN/imagenet/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/imagenet/.vscode/README.md +++ b/Examples/MAX78002/CNN/imagenet/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/kinetics/.vscode/README.md b/Examples/MAX78002/CNN/kinetics/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/kinetics/.vscode/README.md +++ b/Examples/MAX78002/CNN/kinetics/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/kinetics/project.mk b/Examples/MAX78002/CNN/kinetics/project.mk index 0aea55bc677..8a29214e4f8 100644 --- a/Examples/MAX78002/CNN/kinetics/project.mk +++ b/Examples/MAX78002/CNN/kinetics/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md b/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md +++ b/Examples/MAX78002/CNN/kws20_demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md +++ b/Examples/MAX78002/CNN/mobilefacenet-112/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/mobilefacenet-112/project.mk b/Examples/MAX78002/CNN/mobilefacenet-112/project.mk index 0aea55bc677..8a29214e4f8 100644 --- a/Examples/MAX78002/CNN/mobilefacenet-112/project.mk +++ b/Examples/MAX78002/CNN/mobilefacenet-112/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md +++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/project.mk b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/project.mk index 176a4ea0842..52f8141634d 100644 --- a/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/project.mk +++ b/Examples/MAX78002/CNN/pascalvoc-retinanetv7_3/project.mk @@ -3,7 +3,7 @@ # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration # ********************************************************** diff --git a/Examples/MAX78002/CRC/.vscode/README.md b/Examples/MAX78002/CRC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CRC/.vscode/README.md +++ b/Examples/MAX78002/CRC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CSI2/.vscode/README.md b/Examples/MAX78002/CSI2/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CSI2/.vscode/README.md +++ b/Examples/MAX78002/CSI2/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CameraIF/.vscode/README.md b/Examples/MAX78002/CameraIF/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CameraIF/.vscode/README.md +++ b/Examples/MAX78002/CameraIF/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md b/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md +++ b/Examples/MAX78002/CameraIF_Debayer/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Coremark/.vscode/README.md b/Examples/MAX78002/Coremark/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Coremark/.vscode/README.md +++ b/Examples/MAX78002/Coremark/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/DMA/.vscode/README.md b/Examples/MAX78002/DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/DMA/.vscode/README.md +++ b/Examples/MAX78002/DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ECC/.vscode/README.md b/Examples/MAX78002/ECC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ECC/.vscode/README.md +++ b/Examples/MAX78002/ECC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md b/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md +++ b/Examples/MAX78002/EEPROM_Emulator/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Flash/.vscode/README.md b/Examples/MAX78002/Flash/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Flash/.vscode/README.md +++ b/Examples/MAX78002/Flash/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Flash_CLI/.vscode/README.md b/Examples/MAX78002/Flash_CLI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Flash_CLI/.vscode/README.md +++ b/Examples/MAX78002/Flash_CLI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md b/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md +++ b/Examples/MAX78002/FreeRTOSDemo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/GPIO/.vscode/README.md b/Examples/MAX78002/GPIO/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/GPIO/.vscode/README.md +++ b/Examples/MAX78002/GPIO/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Hello_World/.vscode/README.md b/Examples/MAX78002/Hello_World/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Hello_World/.vscode/README.md +++ b/Examples/MAX78002/Hello_World/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md b/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md +++ b/Examples/MAX78002/Hello_World_Cpp/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2C/.vscode/README.md b/Examples/MAX78002/I2C/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2C/.vscode/README.md +++ b/Examples/MAX78002/I2C/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2C_MNGR/.vscode/README.md b/Examples/MAX78002/I2C_MNGR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2C_MNGR/.vscode/README.md +++ b/Examples/MAX78002/I2C_MNGR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2C_SCAN/.vscode/README.md b/Examples/MAX78002/I2C_SCAN/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2C_SCAN/.vscode/README.md +++ b/Examples/MAX78002/I2C_SCAN/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2C_Sensor/.vscode/README.md b/Examples/MAX78002/I2C_Sensor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2C_Sensor/.vscode/README.md +++ b/Examples/MAX78002/I2C_Sensor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2S/.vscode/README.md b/Examples/MAX78002/I2S/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2S/.vscode/README.md +++ b/Examples/MAX78002/I2S/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/I2S_DMA/.vscode/README.md b/Examples/MAX78002/I2S_DMA/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/I2S_DMA/.vscode/README.md +++ b/Examples/MAX78002/I2S_DMA/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ICC/.vscode/README.md b/Examples/MAX78002/ICC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ICC/.vscode/README.md +++ b/Examples/MAX78002/ICC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/ImgCapture/.vscode/README.md b/Examples/MAX78002/ImgCapture/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/ImgCapture/.vscode/README.md +++ b/Examples/MAX78002/ImgCapture/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/LP/.vscode/README.md b/Examples/MAX78002/LP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/LP/.vscode/README.md +++ b/Examples/MAX78002/LP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/LPCMP/.vscode/README.md b/Examples/MAX78002/LPCMP/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/LPCMP/.vscode/README.md +++ b/Examples/MAX78002/LPCMP/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Library_Generate/.vscode/README.md b/Examples/MAX78002/Library_Generate/.vscode/README.md index e2e9a1a6522..a740741c3ab 100644 --- a/Examples/MAX78002/Library_Generate/.vscode/README.md +++ b/Examples/MAX78002/Library_Generate/.vscode/README.md @@ -7,11 +7,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` * [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) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -38,7 +38,7 @@ The steps below are also available in video form in "Understanding Artificial In 2. Run the installer executable, and ensure that "Visual Studio Code Support" is enabled for your installation. - ![Selected Components](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/installer_components.JPG) + ![Selected Components](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/installer_components.JPG) 3. Finish the MSDK installation, taking note of where the MSDK was installed. @@ -54,7 +54,7 @@ The steps below are also available in video form in "Understanding Artificial In 9. Type "open settings json" and select the "Preferences: Open Settings (JSON)" option (_not_ the "Preferences: Open _Default_ Settings (JSON)"). This will open your user settings.json file in VS Code's editor. - ![Open Settings JSON Command](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/open_settings_json.jpg) + ![Open Settings JSON Command](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/open_settings_json.jpg) 10. Add the entries below into your user settings.json file. @@ -82,7 +82,7 @@ This section covers basic usage of the VSCode-Maxim project files. For document Visual Studio Code is built around a "working directory" paradigm. The editor is always rooted in a working directory, and the main mechanism for changing that directory is `File -> Open Folder...`. -![File -> Open Folder](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/file_openfolder.JPG) +![File -> Open Folder](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/file_openfolder.JPG) As a result, you'll notice that there is no "New Project" mechanism. A "project" in VS Code is simply a folder. It will look inside of the opened folder for a `.vscode` _sub_-folder to load project-specific settings from. @@ -90,11 +90,11 @@ A project that is configured for VS Code will have, at minimum, a .vscode sub-fo Ex: -![Example Directory Contents](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/opening_projects_2.jpg) +![Example Directory Contents](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/opening_projects_2.jpg) ### Where to Find Projects -The [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. +The [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) in the MSDK come with with pre-configured .vscode project folders. These projects can be opened "out of the box", but it's good practice to copy example folders _outside_ of the MSDK so that the original copies are kept as clean references. The examples can be freely moved to any location _without a space in its path_. Additionally, empty project templates and a drag-and-drop folder for "injecting" a VSCode-Maxim project can be found under `Tools/VSCode-Maxim` in the MSDK installation. @@ -102,7 +102,7 @@ Additionally, empty project templates and a drag-and-drop folder for "injecting" Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -138,7 +138,7 @@ Once a project is opened 4 available build tasks will become available via `Term ### Debugging -![Debug Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger.JPG) +![Debug Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger.JPG) Debugging is enabled by Visual Studio Code's integrated debugger. Launch configurations can be found in the `.vscode/launch.json` file. @@ -162,11 +162,11 @@ In general, the MAX-series microcontrollers have the following debugger limitati 3. Launch the debugger with `Run > Start Debugging`, with the shortcut `F5`, or via the `Run and Debug` window (Ctrl + Shift + D) and the green "launch" arrow. - ![Debug Tab](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_window.JPG) + ![Debug Tab](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_window.JPG) 4. The debugger will launch a GDB client & OpenOCD server, reset the microcontroller, and should break on entry into `main`. - ![Debugger Break on Main](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_breakmain.JPG) + ![Debugger Break on Main](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_breakmain.JPG) #### Using the Debugger @@ -174,13 +174,13 @@ In general, the MAX-series microcontrollers have the following debugger limitati The main interface for the debugger is the debugger control bar: -![Debugger Control Bar Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/debugger_bar.JPG) +![Debugger Control Bar Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/debugger_bar.JPG) `Continue | Step Over | Step Into | Step Out | Restart | Stop` Breakpoints can be set by clicking in the space next to the line number in a source code file. A red dot indicates a line to break on. Breakpoints can be removed by clicking on them again. Ex: -![Breakpoint](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/breakpoint.JPG) +![Breakpoint](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/breakpoint.JPG) ## Project Configuration @@ -190,7 +190,7 @@ Breakpoints can be set by clicking in the space next to the line number in a sou **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as `"target"` and `"board"` are set correctly. @@ -227,7 +227,7 @@ The following configuration options are available: * ... can be found in the `Libraries/Boards` folder of the MSDK * For example, the supported options for the MAX78000 are `"EvKit_V1"`, `"FTHR_RevA"`, and `"MAXREFDES178"`. - ![MAX78000 Boards](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/78000_boards.JPG) + ![MAX78000 Boards](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/78000_boards.JPG) ### Advanced Config Options @@ -353,7 +353,7 @@ A project's build system is managed by two files found in the project's root dir * `Makefile` * `project.mk` -![Files are located in the root directory](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) +![Files are located in the root directory](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/65af7c61800c7039956f3c1971ffd7915008668d/img/projectmk.JPG) When the command... @@ -416,7 +416,7 @@ For example, if I wanted to enable hardware floating-point acceleration for my p # "Makefile" that is located next to this one. # For instructions on how to use this system, see -# https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/develop#build-configuration +# https://github.com/analogdevicesinc/VSCode-Maxim/tree/develop#build-configuration #BOARD=FTHR_RevA # ^ For example, you can uncomment this line to make the @@ -540,7 +540,7 @@ If you want to start from scratch, take this option. ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Library_Use/.vscode/README.md b/Examples/MAX78002/Library_Use/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Library_Use/.vscode/README.md +++ b/Examples/MAX78002/Library_Use/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Pulse_Train/.vscode/README.md b/Examples/MAX78002/Pulse_Train/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Pulse_Train/.vscode/README.md +++ b/Examples/MAX78002/Pulse_Train/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/QSPI/.vscode/README.md b/Examples/MAX78002/QSPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/QSPI/.vscode/README.md +++ b/Examples/MAX78002/QSPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/RTC/.vscode/README.md b/Examples/MAX78002/RTC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/RTC/.vscode/README.md +++ b/Examples/MAX78002/RTC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/RTC_Backup/.vscode/README.md b/Examples/MAX78002/RTC_Backup/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/RTC_Backup/.vscode/README.md +++ b/Examples/MAX78002/RTC_Backup/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md b/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md +++ b/Examples/MAX78002/RV_ARM_Loader/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/SDHC_FAT/.vscode/README.md b/Examples/MAX78002/SDHC_FAT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/SDHC_FAT/.vscode/README.md +++ b/Examples/MAX78002/SDHC_FAT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/SDHC_Raw/.vscode/README.md b/Examples/MAX78002/SDHC_Raw/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/SDHC_Raw/.vscode/README.md +++ b/Examples/MAX78002/SDHC_Raw/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/SPI/.vscode/README.md b/Examples/MAX78002/SPI/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/SPI/.vscode/README.md +++ b/Examples/MAX78002/SPI/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md b/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md +++ b/Examples/MAX78002/SPI_ControllerTarget/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md b/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100644 --- a/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md +++ b/Examples/MAX78002/SPI_MasterSlave/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/TFT_Demo/.vscode/README.md b/Examples/MAX78002/TFT_Demo/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/TFT_Demo/.vscode/README.md +++ b/Examples/MAX78002/TFT_Demo/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/TMR/.vscode/README.md b/Examples/MAX78002/TMR/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/TMR/.vscode/README.md +++ b/Examples/MAX78002/TMR/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/TRNG/.vscode/README.md b/Examples/MAX78002/TRNG/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/TRNG/.vscode/README.md +++ b/Examples/MAX78002/TRNG/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Temp_Monitor/.vscode/README.md b/Examples/MAX78002/Temp_Monitor/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Temp_Monitor/.vscode/README.md +++ b/Examples/MAX78002/Temp_Monitor/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/UART/.vscode/README.md b/Examples/MAX78002/UART/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/UART/.vscode/README.md +++ b/Examples/MAX78002/UART/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md b/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_CDCACM/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_CDC/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_CompositeDevice_MSC_HID/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_HIDKeyboard/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md b/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_MassStorage/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md +++ b/Examples/MAX78002/USB/USB_MassStorage_ThroughPut/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/WUT/.vscode/README.md b/Examples/MAX78002/WUT/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/WUT/.vscode/README.md +++ b/Examples/MAX78002/WUT/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/Watchdog/.vscode/README.md b/Examples/MAX78002/Watchdog/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/Watchdog/.vscode/README.md +++ b/Examples/MAX78002/Watchdog/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Examples/MAX78002/WearLeveling/.vscode/README.md b/Examples/MAX78002/WearLeveling/.vscode/README.md index 90fbcefc65d..5b355bd51c9 100755 --- a/Examples/MAX78002/WearLeveling/.vscode/README.md +++ b/Examples/MAX78002/WearLeveling/.vscode/README.md @@ -5,11 +5,11 @@ _(If you're viewing this document from within Visual Studio Code you can press ` ## Quick Links * [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/) -* [VSCode-Maxim Github](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) +* [VSCode-Maxim Github](https://github.com/analogdevicesinc/VSCode-Maxim) ## Introduction -VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/Analog-Devices-MSDK/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). +VSCode-Maxim is a set of [Visual Studio Code](https://code.visualstudio.com/) project configurations and utilities for enabling embedded development for [Analog Device's MSDK](https://github.com/analogdevicesinc/msdk) and the [MAX32xxx/MAX78xxx microcontrollers](https://www.analog.com/en/product-category/microcontrollers.html). The following features are supported: @@ -37,7 +37,7 @@ See the [MSDK User Guide](https://analogdevicesinc.github.io/msdk/USERGUIDE/#vis ## Issue Tracker -Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/issues) tracker on Github. +Bug reports, feature requests, and contributions are welcome via the [issues](https://github.com/analogdevicesinc/VSCode-Maxim/issues) tracker on Github. New issues should contain _at minimum_ the following information: diff --git a/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk b/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk index 884021b4b8a..dfa8fd5e596 100644 --- a/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk +++ b/Libraries/CMSIS/Device/Maxim/GCC/gcc.mk @@ -628,7 +628,7 @@ $(info ************************************************************************* $(info * Analog Devices MSDK) $(info * - User Guide: https://analogdevicesinc.github.io/msdk/USERGUIDE/) $(info * - Get Support: https://www.analog.com/support/technical-support.html) -$(info * - Report Issues: https://github.com/Analog-Devices-MSDK/msdk/issues) +$(info * - Report Issues: https://github.com/analogdevicesinc/msdk/issues) $(info * - Contributing: https://analogdevicesinc.github.io/msdk/CONTRIBUTING/) $(info ****************************************************************************) # export HELP_COMPLETE so that it's only printed once. diff --git a/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk b/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk index d379acff033..18de492cbf9 100644 --- a/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk +++ b/Libraries/CMSIS/Device/Maxim/GCC/gcc_riscv.mk @@ -626,7 +626,7 @@ $(info ************************************************************************* $(info * Analog Devices MSDK) $(info * - User Guide: https://analogdevicesinc.github.io/msdk/USERGUIDE/) $(info * - Get Support: https://www.analog.com/support/technical-support.html) -$(info * - Report Issues: https://github.com/Analog-Devices-MSDK/msdk/issues) +$(info * - Report Issues: https://github.com/analogdevicesinc/msdk/issues) $(info * - Contributing: https://analogdevicesinc.github.io/msdk/CONTRIBUTING/) $(info ****************************************************************************) # export HELP_COMPLETE so that it's only printed once. diff --git a/Libraries/Cordio/docs/CORDIO_USERGUIDE.md b/Libraries/Cordio/docs/CORDIO_USERGUIDE.md index e49ca91c666..1645dfb57b2 100644 --- a/Libraries/Cordio/docs/CORDIO_USERGUIDE.md +++ b/Libraries/Cordio/docs/CORDIO_USERGUIDE.md @@ -290,7 +290,7 @@ Unfortunately, there is no Bluetooth SIG-defined standard for this protocol. Thi ## Additional Documentation -Documentation for Python tools used for Bluetooth development and debugging can be found [here](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Tools/Bluetooth). +Documentation for Python tools used for Bluetooth development and debugging can be found [here](https://github.com/analogdevicesinc/msdk/tree/main/Tools/Bluetooth). Documentation for each of the supporting applications can be found below: diff --git a/Libraries/PeriphDrivers/Source/SPI/spi_reva1.c b/Libraries/PeriphDrivers/Source/SPI/spi_reva1.c index 25d38567875..ca7b39c4fb9 100644 --- a/Libraries/PeriphDrivers/Source/SPI/spi_reva1.c +++ b/Libraries/PeriphDrivers/Source/SPI/spi_reva1.c @@ -779,7 +779,7 @@ uint32_t MXC_SPI_RevA1_MasterTransHandler(mxc_spi_reva_regs_t *spi, mxc_spi_reva if (states[spi_num].hw_ss_control && !req->ssDeassert) { spi->ctrl0 = (spi->ctrl0 & ~MXC_F_SPI_REVA_CTRL0_START) | MXC_F_SPI_REVA_CTRL0_SS_CTRL; // Note: Setting 0 to START bit to avoid race condition and duplicated starts. - // See https://github.com/Analog-Devices-MSDK/msdk/issues/713 + // See https://github.com/analogdevicesinc/msdk/issues/713 } retval = MXC_SPI_RevA1_TransHandler(spi, req); diff --git a/Libraries/SDHC/ff13/fat32.mk b/Libraries/SDHC/ff13/fat32.mk index f83be19c75e..c69e54a2121 100644 --- a/Libraries/SDHC/ff13/fat32.mk +++ b/Libraries/SDHC/ff13/fat32.mk @@ -24,7 +24,7 @@ # project. ################################################################################ -$(warning Warning: Building with FatFS R0.13. The MSDK will update the default FatFS version to R0.15 next release. See https://github.com/Analog-Devices-MSDK/msdk/pull/720) +$(warning Warning: Building with FatFS R0.13. The MSDK will update the default FatFS version to R0.15 next release. See https://github.com/analogdevicesinc/msdk/pull/720) ifeq "$(FAT32_DRIVER_DIR)" "" $(error FAT32_DRIVER_DIR must be specified") diff --git a/Libraries/SDHC/ff14/fat32.mk b/Libraries/SDHC/ff14/fat32.mk index 0003c5d4221..1053fc9e78e 100644 --- a/Libraries/SDHC/ff14/fat32.mk +++ b/Libraries/SDHC/ff14/fat32.mk @@ -24,7 +24,7 @@ # project. ################################################################################ -$(warning Warning: Building with FatFS R0.14. The MSDK will update the default FatFS version to R0.15 next release. See https://github.com/Analog-Devices-MSDK/msdk/pull/720) +$(warning Warning: Building with FatFS R0.14. The MSDK will update the default FatFS version to R0.15 next release. See https://github.com/analogdevicesinc/msdk/pull/720) ifeq "$(FAT32_DRIVER_DIR)" "" $(error FAT32_DRIVER_DIR must be specified") diff --git a/README.md b/README.md index a6cda81c762..375d88c595c 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,13 @@ This repo can be cloned using [Git](https://git-scm.com/) to obtain the latest d * **SSH clone (recommended)** ```bash - git clone git@github.com:Analog-Devices-MSDK/msdk.git + git clone git@github.com:analogdevicesinc/msdk.git ``` * **HTTPS Clone** ```bash - git clone https://github.com/Analog-Devices-MSDK/msdk.git + git clone https://github.com/analogdevicesinc/msdk.git ``` ### Toolchain Setup diff --git a/USERGUIDE.md b/USERGUIDE.md index e6d08af701a..d3ec647c0e4 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -4,7 +4,7 @@ The Maxim Microcontrollers SDK (MSDK), now a part of [Analog Devices](https://www.analog.com/en/index.html), contains the necessary software and tools to develop firmware for the [MAX32xxx and MAX78xxx Microcontrollers](https://www.analog.com/en/parametricsearch/10984). That includes register and system startup files to enable low-level development for its [supported parts](#supported-parts). It also provides higher-level peripheral driver APIs (written in C) alongside various utilities, third-party libraries, Board Support Packages (BSPs), and a set of example programs for each microcontroller. -Additionally, the MSDK includes a GCC-based toolchain, and builds are managed by a system of Makefiles (See [GNU Make](https://www.gnu.org/software/make/manual/)). A [custom fork of OpenOCD](https://github.com/Analog-Devices-MSDK/openocd) enables flashing and debugging. The MSDK's toolchain and build system offers a Command Line Interface (CLI), and project files for [supported development environments](#supported-development-environments) are maintained that build on top of that CLI. +Additionally, the MSDK includes a GCC-based toolchain, and builds are managed by a system of Makefiles (See [GNU Make](https://www.gnu.org/software/make/manual/)). A [custom fork of OpenOCD](https://github.com/analogdevicesinc/openocd) enables flashing and debugging. The MSDK's toolchain and build system offers a Command Line Interface (CLI), and project files for [supported development environments](#supported-development-environments) are maintained that build on top of that CLI. This document describes the MSDK's installation, setup, and usage. @@ -369,116 +369,12 @@ To run a _headless_ installation: ???+ warning "⚠️ **Warning**" On MacOS, some additional missing packages must be manually installed with [Homebrew](https://brew.sh/). There are also some manual setup steps required to retrieve `make` version 4. The instructions in this section are critical. -??? note "ℹ️ **Instructions for M1 platforms**" +1. Install [Homebrew](https://brew.sh/). - The MSDK's OpenOCD binaries ship pre-compiled for Intel Silicon (i386). As a result, you should use a [Rosetta](https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment) terminal on M1 platforms to install the _i386 version_ of Homebrew and retrieve OpenOCD's dependencies with it. Installing from Rosetta ensures OpenOCD gets the packages with the architecture it needs. From there, Rosetta will handle the rest and allow running the binaries on the M1 platform's arm64 architecture. +2. Run the command below to install dependencies for OpenOCD. - Additionally, the MSDK toolchain requires Make 4.x+, which must also be retrieved via Homebrew. - - The i386 version of Homebrew can be installed in parallel with the arm64 version and typically installs into a separate filesystem. - - 1. Open a terminal and update Rosetta. - - :::shell - softwareupdate --install-rosetta --agree-to-license - - 2. Close the terminal. - - 3. Create a new Rosetta terminal: - - 1. Launch Finder. - - 2. Navigate to Applications and find the "Terminal" application. - - 3. Right-Click Terminal and Duplicate it. Rename it to "Terminal i386". This will be a new application shortcut to the Rosetta terminal. - - 4. Right-Click "Terminal i386" > Get Info > Enable "Open using Rosetta" - - 5. Launch the new "Terminal i386" and type `arch` to verify that it says `i386` now. - - 4. From your Rosetta terminal, follow the instructions on the [Homebrew home page](https://brew.sh/) to install Homebrew on your system. - - 5. Verify the correct version of Homebrew is running from your Rosetta terminal using the `which brew` command. This command should return a path beginning with `/usr/local`. - - **Note:** On systems with multiple or pre-existing Homebrew installations, the arm64 version of Homebrew may still take precedence over the newly installed x86_64 version. If `which brew` contains `/opt/homebrew` instead, you may need to edit your terminal profile's startup script. Alternatively, you can directly run the correct Homebrew binary using its absolute path. - - 6. Run the command - - :::shell - brew install make libusb-compat libftdi hidapi libusb - - (or, if you need to use the absolute path) - - :::shell - /usr/local/homebrew/bin/brew make install libusb-compat libftdi hidapi libusb - - 7. The MSDK toolchain is dependent on GNU make 4.x+ being available as `make`, but Homebrew will install it as `gmake`. Modify your shell's startup script (`~/.zshrc`) to account for this. Run `brew info make` for more details, and check the "caveats" section. - - :::shell - ==> make: stable 4.4.1 (bottled) - Utility for directing compilation - https://www.gnu.org/software/make/ - /usr/local/Cellar/make/4.4.1 (16 files, 1.3MB) * - Poured from bottle using the formulae.brew.sh API on 2023-03-28 at 17:46:43 - From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/make.rb - License: GPL-3.0-only - ==> Dependencies - Build: lzip, lzip - ==> Caveats - GNU "make" has been installed as "gmake". - If you need to use it as "make", you can add a "gnubin" directory - to your PATH from your bashrc like: - - PATH="/usr/local/opt/make/libexec/gnubin:$PATH" - ==> Analytics - install: 549 (30 days), 30,768 (90 days), 164,034 (365 days) - install-on-request: 405 (30 days), 19,728 (90 days), 109,440 (365 days) - build-error: 0 (30 days) - - This involves adding the following line to your shell's startup script. Open the `~/.zshrc` in a text editor and follow the instructions that Homebrew listed in the "Caveats" section. For example, given the Homebrew output above one would add the following contents to `~/.zshrc`. The exact path may vary across different systems and Homebrew versions. - - :::bash - PATH="/usr/local/opt/make/libexec/gnubin:$PATH" - - 8. Restart your shell and verify that `make --version` returns 4.x+. - -??? note "ℹ️ **Instructions for non-M1 platforms**" - - 1. Follow the instructions on the [Homebrew home page](https://brew.sh/) to install Homebrew on your system. - - 2. Then, open a terminal and run the command - - brew install make libusb-compat libftdi hidapi libusb - - 3. The MSDK toolchain is dependent on GNU make 4.x+ being available as `make`, but Homebrew will install it as `gmake`. Modify your shell's startup script (`~/.zshrc`) to account for this. Run `brew info make` for more details, and check the "caveats" section. - - :::shell - ==> make: stable 4.4.1 (bottled) - Utility for directing compilation - https://www.gnu.org/software/make/ - /usr/local/Cellar/make/4.4.1 (16 files, 1.3MB) * - Poured from bottle using the formulae.brew.sh API on 2023-03-28 at 17:46:43 - From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/make.rb - License: GPL-3.0-only - ==> Dependencies - Build: lzip, lzip - ==> Caveats - GNU "make" has been installed as "gmake". - If you need to use it as "make", you can add a "gnubin" directory - to your PATH from your bashrc like: - - PATH="/usr/local/opt/make/libexec/gnubin:$PATH" - ==> Analytics - install: 549 (30 days), 30,768 (90 days), 164,034 (365 days) - install-on-request: 405 (30 days), 19,728 (90 days), 109,440 (365 days) - build-error: 0 (30 days) - - This involves adding the following line to your shell's startup script. Open the `~/.zshrc` in a text editor and follow the instructions that Homebrew listed in the "Caveats" section. For example, given the Homebrew output above one would add the following contents to `~/.zshrc`. The exact path may vary across different systems and Homebrew versions. - - :::bash - PATH="/usr/local/opt/make/libexec/gnubin:$PATH" - - 4. Restart your shell and verify that `make --version` returns 4.x+. + :::shell + brew install libusb-compat libftdi hidapi libusb ### Maintenance @@ -492,11 +388,11 @@ The MSDK releases updates quarterly, and the Maintenance Tool will retrieve the #### Older Versions and Offline Installer -Older versions of the MSDK are available as an **_offline installer_** for each release tag. They are available on the [Releases page](https://github.com/Analog-Devices-MSDK/msdk/releases) of the MSDK GitHub and can be used to roll back to a specific MSDK release. +Older versions of the MSDK are available as an **_offline installer_** for each release tag. They are available on the [Releases page](https://github.com/analogdevicesinc/msdk/releases) of the MSDK GitHub and can be used to roll back to a specific MSDK release. #### Development Resources -Users can obtain development copies of the MSDK resources from [Github](https://github.com/Analog-Devices-MSDK/msdk). Setup instructions can be found in the repository's [README](https://github.com/Analog-Devices-MSDK/msdk/blob/main/README.md). +Users can obtain development copies of the MSDK resources from [Github](https://github.com/analogdevicesinc/msdk). Setup instructions can be found in the repository's [README](https://github.com/analogdevicesinc/msdk/blob/main/README.md). ## Getting Started @@ -588,7 +484,7 @@ The setup below only needs to be done once per MSDK [installation](#installation For example, you might set `"MAXIM_PATH":"C:/MaximSDK"` on Windows and `"MAXIM_PATH":"/home/username/MaximSDK"` on Ubuntu/MacOS. ???+ note "ℹ️ **Note: Automatic Updates**" - `"update.mode: "manual"` and `"extensions.autoUpdate": false` _disable_ automatic updates of VS Code and its extensions, respectively. This is an _optional_ (but recommended) addition left over from the early days of VS Code development when there was lots of feature churn. Things have stabilized more as of version 1.70+, but updates remain frequent. For the VSCode-Maxim project files, the exact version numbers tested with each release can be found on the [VSCode-Maxim Releases](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/releases) page. + `"update.mode: "manual"` and `"extensions.autoUpdate": false` _disable_ automatic updates of VS Code and its extensions, respectively. This is an _optional_ (but recommended) addition left over from the early days of VS Code development when there was lots of feature churn. Things have stabilized more as of version 1.70+, but updates remain frequent. For the VSCode-Maxim project files, the exact version numbers tested with each release can be found on the [VSCode-Maxim Releases](https://github.com/analogdevicesinc/VSCode-Maxim/releases) page. 8. Save your changes to the file with **`CTRL + S`** and restart VS Code. @@ -793,7 +689,7 @@ Any "file not found" errors indicate that `MAXIM_PATH` has not been set correctl #### Building and Running an Example (Command-Line) -1. First, copy an [example project](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) to an accessible directory outside of the SDK. The `Hello_World` project is a good one to start with. +1. First, copy an [example project](https://github.com/analogdevicesinc/msdk/tree/main/Examples) to an accessible directory outside of the SDK. The `Hello_World` project is a good one to start with. ???+ warning "**⚠️ Copying Examples**" It's strongly recommended to copy example projects to an _outside_ folder before modifying them. This keeps the MSDK's "source" copy preserved for reference. Project folders must be copied to a location _without_ any spaces in its filepath. @@ -850,7 +746,7 @@ Any "file not found" errors indicate that `MAXIM_PATH` has not been set correctl make flash.openocd ???+ note "ℹ️ **Note: Flashing with Make**" - The command `make flash.openocd` is a build target added to the MSDK as of the [June 2023 Release](https://github.com/Analog-Devices-MSDK/msdk/releases/tag/v2023_06) to make flashing over the command-line easier. It launches and drives an OpenOCD server behind the scenes to flash the project's binary. See the `Tools/Flash/flash.mk` file for implementation details, and [Flashing on the Command-Line](#flashing-on-the-command-line) for more details on launching debug server/clients manually. + The command `make flash.openocd` is a build target added to the MSDK as of the [June 2023 Release](https://github.com/analogdevicesinc/msdk/releases/tag/v2023_06) to make flashing over the command-line easier. It launches and drives an OpenOCD server behind the scenes to flash the project's binary. See the `Tools/Flash/flash.mk` file for implementation details, and [Flashing on the Command-Line](#flashing-on-the-command-line) for more details on launching debug server/clients manually. Expected output: @@ -892,7 +788,7 @@ Any "file not found" errors indicate that `MAXIM_PATH` has not been set correctl ## Visual Studio Code -Support for [Visual Studio Code](https://code.visualstudio.com/) is maintained for the MSDK and developed on the [VSCode-Maxim](https://github.com/Analog-Devices-MSDK/VSCode-Maxim) GitHub repository. +Support for [Visual Studio Code](https://code.visualstudio.com/) is maintained for the MSDK and developed on the [VSCode-Maxim](https://github.com/analogdevicesinc/VSCode-Maxim) GitHub repository. For setup/quick-start instructions, see ["Getting Started with Visual Studio Code"](#getting-started-with-visual-studio-code) first. This section offers detailed usage info focusing on the typical development cycle. @@ -937,7 +833,7 @@ To open a project: To set the BSP for an open project: -1. Set the `"board"` [project configuration](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/tree/main#project-configuration) option in `.vscode/settings.json`, which maps to the `BOARD` _[Build Configuration Variable](#build-tables)_. +1. Set the `"board"` [project configuration](https://github.com/analogdevicesinc/VSCode-Maxim/tree/main#project-configuration) option in `.vscode/settings.json`, which maps to the `BOARD` _[Build Configuration Variable](#build-tables)_. See [Board Support Packages](#board-support-packages) for a table of possible values. @@ -953,7 +849,7 @@ To set the BSP for an open project: Once a project is opened 4 available build tasks will become available via `Terminal > Run Build task...` or the shortcut `Ctrl+Shift+B`. These tasks are configured by the `.vscode/task.json` file. -![Build Tasks Image](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/buildtasks.JPG) +![Build Tasks Image](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/buildtasks.JPG) #### Build @@ -1036,7 +932,7 @@ The condition and condition type can be modified with the dropdown. This is usef A peripheral browser lets you quickly view the formatted register-level contents of the peripheral blocks on a target microcontroller under debug. -As of the [v1.6.0](https://github.com/Analog-Devices-MSDK/VSCode-Maxim/releases/tag/v1.6.0) VSCode-Maxim project files, pre-made [Cortex-Debug](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug) launch profiles are included in each project. These profiles enable peripheral browsing via an embedded "Cortex Peripherals"window. +As of the [v1.6.0](https://github.com/analogdevicesinc/VSCode-Maxim/releases/tag/v1.6.0) VSCode-Maxim project files, pre-made [Cortex-Debug](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug) launch profiles are included in each project. These profiles enable peripheral browsing via an embedded "Cortex Peripherals"window. ![Figure 47](res/Fig47.jpg) @@ -1127,7 +1023,7 @@ This section demonstrates how to debug `-riscv` projects in VS Code using the [m **When a change is made to this file, VS Code should be reloaded with CTRL+SHIFT+P -> Reload Window (or alternatively restarted completely) to force a re-parse.** -![Reload Window](https://raw.githubusercontent.com/Analog-Devices-MSDK/VSCode-Maxim/main/img/reload_window.JPG) +![Reload Window](https://raw.githubusercontent.com/analogdevicesinc/VSCode-Maxim/main/img/reload_window.JPG) The default project configuration should work for most use cases as long as [`"target"`](#target) and [`"board"`](#board) are set correctly. @@ -1356,7 +1252,7 @@ When Eclipse is launched, it will prompt for a **_workspace_** location. This is ![Figure 23](res/Fig23.jpg) -4. **Browse** to the [`Examples`](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) folder in the MSDK installation for your target microcontroller and select the example projects to import into the workspace. +4. **Browse** to the [`Examples`](https://github.com/analogdevicesinc/msdk/tree/main/Examples) folder in the MSDK installation for your target microcontroller and select the example projects to import into the workspace. ![Figure 24](res/Fig24.jpg) @@ -1537,7 +1433,7 @@ For setup/quick-start, see ["Getting Started with Command-Line Development"](#ge Info : SWD DPIDR 0x2ba01477 shutdown command invoked - This command is a build target added to the MSDK as of the [June 2023 Release](https://github.com/Analog-Devices-MSDK/msdk/releases/tag/v2023_06) to make flashing over the command-line easier. It will **flash** _and_ **run** the project with OpenOCD. See the `Tools/Flash/flash.mk` file for implementation details. + This command is a build target added to the MSDK as of the [June 2023 Release](https://github.com/analogdevicesinc/msdk/releases/tag/v2023_06) to make flashing over the command-line easier. It will **flash** _and_ **run** the project with OpenOCD. See the `Tools/Flash/flash.mk` file for implementation details. - ???+ note "ℹ️ **OpenOCD Flash & Hold**" The following command template can be used if you just want to flash the program with OpenOCD manually, and halt the target micro. This is used when you want to start a command-line debugging session. @@ -2226,7 +2122,7 @@ The following table matches external part numbers to internal die types. This i ### CMSIS-DSP -The CMSIS-DSP library provides a suite of common **Digital Signal Processing _(DSP)_** functions that take advantage of hardware accelerated _Floating Point Unit (FPU)_ available on microcontrollers with Arm Cortex-M cores. This library is distributed in the MSDK as a pre-compiled static library file, and the MSDK maintains a port of the official code examples in the **ARM-DSP** [Examples](https://github.com/Analog-Devices-MSDK/msdk/tree/main/Examples) folder for each microcontroller. +The CMSIS-DSP library provides a suite of common **Digital Signal Processing _(DSP)_** functions that take advantage of hardware accelerated _Floating Point Unit (FPU)_ available on microcontrollers with Arm Cortex-M cores. This library is distributed in the MSDK as a pre-compiled static library file, and the MSDK maintains a port of the official code examples in the **ARM-DSP** [Examples](https://github.com/analogdevicesinc/msdk/tree/main/Examples) folder for each microcontroller. Please refer to the [CMSIS-DSP official documentation](https://www.keil.com/pack/doc/CMSIS/DSP/html/index.html) for more detailed documentation on the library functions and usage. @@ -2301,6 +2197,7 @@ Once enabled, the following [build configuration variables](#build-configuration | ---------------------- | ---------------------------------------------------------- | ------------------------------------------------------------ | | `FATFS_VERSION` | Specify the version of [FatFS](http://elm-chan.org/fsw/ff/00index_e.html) to use | FatFS is a generic FAT/exFAT filesystem that comes as a sub-component of the SDHC library. This variable can be used to change the [version](http://elm-chan.org/fsw/ff/updates.html) to use. Acceptable values are `ff13` (R0.13), `ff14` (R0.14b), or `ff15` (R0.15) | | `SDHC_CLK_FREQ` | Sets the clock freq. for the SDHC library (Hz) | Sets the target clock frequency in units of Hz (Default is 30Mhz). Reducing the SDHC clock frequency is a good troubleshooting step when debugging communication issues. | +| `FF_CONF_DIR` | Sets the search directory for `ffconf.h` | (Available for `FATFS_VERSION = ff15` only) FatFS configuration is done via an `ffconf.h` file. This option allows specifying the location of a custom `ffconf.h` file for a project. | --- diff --git a/mkdocs.yml b/mkdocs.yml index 34bb2833bee..6ef077efa7f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ site_name: Analog Devices MSDK Documentation site_author: Analog Devices copyright: 'Copyright (C) 2022-2023 Maxim Integrated Products, Inc. All Rights Reserved. (now owned by Analog Devices, Inc.), Copyright (C) 2023 Analog Devices, Inc. All Rights Reserved. This software is proprietary to Analog Devices, Inc. and its licensors.' -repo_url: https://github.com/Analog-Devices-MSDK/msdk +repo_url: https://github.com/analogdevicesinc/msdk edit_uri: null docs_dir: 'Documentation' site_dir: 'docs'