Skip to content

Commit f7cbb63

Browse files
authored
Update building folder urls to https (#179)
1 parent 0bd7ff7 commit f7cbb63

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

content/building/build-esp32.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You'll need:
4141

4242
`C:\nanoFramework`
4343

44-
-**Step 2**: Download and install [Visual Studio Code](http://code.visualstudio.com).
44+
-**Step 2**: Download and install [Visual Studio Code](https://code.visualstudio.com).
4545

4646
-**Step 3**: Clone [`nf-interpreter`](https://github.com/nanoframework/nf-interpreter) repository into `C:\nanoFramework\nf-interpreter`. See next section for more info.
4747

@@ -234,7 +234,7 @@ If flashing nanoCLR via a COM port (default), then be aware that you need to dis
234234

235235
You may have to add the `IRAM_ATTR` attribute to a function that you want to debug, so it can be loaded in RAM. When launched the debugger will normally stop at the main task. Its not possible to set a break point on code that is not yet loaded so either step down to a point that it is loaded or temporarily set the method with the IRAM_ATTR attribute.
236236

237-
For more information on JTAG debugging see [Espressif documentation](http://esp-idf.readthedocs.io/en/latest/api-guides/jtag-debugging/).
237+
For more information on JTAG debugging see [Espressif documentation](https://esp-idf.readthedocs.io/en/latest/api-guides/jtag-debugging/).
238238

239239
### Debugging nanoCLR without special hardware
240240

content/building/build-in-visual-studio.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,16 +125,16 @@ In the VS2019 IDE output Window you should see:
125125
=thread-group-added,id="i1"
126126
GNU gdb (crosstool-NG crosstool-ng-1.22.0-80-g6c4433a5) 7.10
127127
Copyright (C) 2015 Free Software Foundation, Inc.
128-
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
128+
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
129129
This is free software: you are free to change and redistribute it.
130130
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
131131
and "show warranty" for details.
132132
This GDB was configured as "--host=i686-host_pc-mingw32 --target=xtensa-esp32-elf".
133133
Type "show configuration" for configuration details.
134134
For bug reporting instructions, please see:
135-
<http://www.gnu.org/software/gdb/bugs/>.
135+
<https://www.gnu.org/software/gdb/bugs/>.
136136
Find the GDB manual and other documentation resources online at:
137-
<http://www.gnu.org/software/gdb/documentation/>.
137+
<https://www.gnu.org/software/gdb/documentation/>.
138138
For help, type "help".
139139
Type "apropos word" to search for commands related to "word".
140140
Warning: Debuggee TargetArchitecture not detected, assuming x86_64.

content/building/build-instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You'll need:
3434

3535
If you are using VS Code as your development platform we suggest that you use the CMake Tools extension. This will allow you to run the builds without leaving VS Code.
3636

37-
- [Visual Studio Code](http://code.visualstudio.com/)
37+
- [Visual Studio Code](https://code.visualstudio.com/)
3838
- [CMake Extension](https://marketplace.visualstudio.com/items?itemName=twxs.cmake)
3939
- [CMake Tools Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools)
4040

content/building/build-nxp.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you prefer to install all the tools needed on your Windows machine, you shoul
2121

2222
You'll need:
2323

24-
- [Visual Studio Code](http://code.visualstudio.com/)
24+
- [Visual Studio Code](https://code.visualstudio.com/)
2525
- Visual Studio Code Extensions
2626
. [C/C++](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) - C/C++ IntelliSense, debugging, and code browsing (by Microsoft)
2727
. [CMake Tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools) - Extended CMake support in Visual Studio Code (by Microsoft)
@@ -42,7 +42,7 @@ To simplify: this guide we will put all our tools and source in easily accessibl
4242
- `C:\nftools`
4343
- `C:\nanoFramework`
4444

45-
1. Download and install [Visual Studio Code](http://code.visualstudio.com).
45+
1. Download and install [Visual Studio Code](https://code.visualstudio.com).
4646

4747
1. Clone [`nf-interpreter`](https://github.com/nanoframework/nf-interpreter) repository into `C:\nanoFramework\nf-interpreter`. See next section for more info.
4848

@@ -73,7 +73,7 @@ To simplify, this guide we will put all our tools and source in easily accessibl
7373
- `C:\nftools`
7474
- `C:\nanoFramework`
7575

76-
2. [Download](http://code.visualstudio.com/) and install Visual Studio Code.
76+
2. [Download](https://code.visualstudio.com/) and install Visual Studio Code.
7777

7878
3. [Download](https://cmake.org/download/) and install CMake to `C:\nftools\CMake`.
7979

@@ -206,4 +206,4 @@ If you want to view CPU register values in real time and use more advanced debug
206206

207207
## Next Steps
208208

209-
See [Getting Started](http://docs.nanoframework.net/content/getting-started-guides/getting-started-managed.html) for instructions on creating and running a 'Hello World' managed application on your nanoFramework board.
209+
See [Getting Started](https://docs.nanoframework.net/content/getting-started-guides/getting-started-managed.html) for instructions on creating and running a 'Hello World' managed application on your nanoFramework board.

content/building/build-stm32.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To simplify: this guide we will put all our tools and source in easily accessibl
4242
- `C:\nftools`
4343
- `C:\nanoFramework`
4444

45-
1. Download and install [Visual Studio Code](http://code.visualstudio.com).
45+
1. Download and install [Visual Studio Code](https://code.visualstudio.com).
4646

4747
1. Clone [`nf-interpreter`](https://github.com/nanoframework/nf-interpreter) repository into `C:\nanoFramework\nf-interpreter`. See next section for more info.
4848

@@ -177,4 +177,4 @@ Follow the instructions [here](../stm32/flash-cube-programmer.md) to install STM
177177

178178
## Next Steps
179179

180-
See [Getting Started](http://docs.nanoframework.net/content/getting-started-guides/getting-started-managed.html) for instructions on creating and running a 'Hello World' managed application on your nanoFramework board.
180+
See [Getting Started](https://docs.nanoframework.net/content/getting-started-guides/getting-started-managed.html) for instructions on creating and running a 'Hello World' managed application on your nanoFramework board.

0 commit comments

Comments
 (0)