diff options
author | Ryan <fauxpark@gmail.com> | 2021-01-30 22:00:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 22:00:56 +1100 |
commit | 92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (patch) | |
tree | 6b9861b866e761c375b19f469e29a6fbc4690c2b /docs/other_eclipse.md | |
parent | 4c4b4b6e0d236637d4803b09f1ec9333aa532389 (diff) | |
download | qmk_firmware-92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d.tar.gz qmk_firmware-92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d.zip |
[Docs] Use HTTPS for images and links where possible (#11695)
Diffstat (limited to 'docs/other_eclipse.md')
-rw-r--r-- | docs/other_eclipse.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/other_eclipse.md b/docs/other_eclipse.md index b2655ca08..cb3ceb540 100644 --- a/docs/other_eclipse.md +++ b/docs/other_eclipse.md | |||
@@ -23,7 +23,7 @@ Before starting, you must have followed the [Getting Started](newbs_getting_star | |||
23 | Eclipse is a Java application, so you will need to install Java 8 or more recent to be able to run it. You may choose between the JRE or the JDK, the latter being useful if you intend to do Java development. | 23 | Eclipse is a Java application, so you will need to install Java 8 or more recent to be able to run it. You may choose between the JRE or the JDK, the latter being useful if you intend to do Java development. |
24 | 24 | ||
25 | # Install Eclipse and Its Plugins | 25 | # Install Eclipse and Its Plugins |
26 | Eclipse comes in [several flavours](http://www.eclipse.org/downloads/eclipse-packages/) depending on the target usage that you will have. There is no package comprising the AVR stack, so we will need to start from Eclipse CDT (C/C++ Development Tooling) and install the necessary plugins. | 26 | Eclipse comes in [several flavours](https://www.eclipse.org/downloads/eclipse-packages/) depending on the target usage that you will have. There is no package comprising the AVR stack, so we will need to start from Eclipse CDT (C/C++ Development Tooling) and install the necessary plugins. |
27 | 27 | ||
28 | ## Download and Install Eclipse CDT | 28 | ## Download and Install Eclipse CDT |
29 | If you already have Eclipse CDT on your system, you can skip this step. However it is advised to keep it up-to-date for better support. | 29 | If you already have Eclipse CDT on your system, you can skip this step. However it is advised to keep it up-to-date for better support. |
@@ -32,7 +32,7 @@ If you have another Eclipse package installed, it is normally possible to [insta | |||
32 | 32 | ||
33 | Installation is very simple: follow the [5 Steps to Install Eclipse](https://eclipse.org/downloads/eclipse-packages/?show_instructions=TRUE), and choose **Eclipse IDE for C/C++ Developers** at Step 3. | 33 | Installation is very simple: follow the [5 Steps to Install Eclipse](https://eclipse.org/downloads/eclipse-packages/?show_instructions=TRUE), and choose **Eclipse IDE for C/C++ Developers** at Step 3. |
34 | 34 | ||
35 | Alternatively, you can also directly [download Eclipse IDE for C/C++ Developers](http://www.eclipse.org/downloads/eclipse-packages/) ([direct link to current version](http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/neonr)) and extract the package to the location of your choice (this creates an `eclipse` folder). | 35 | Alternatively, you can also directly [download Eclipse IDE for C/C++ Developers](https://www.eclipse.org/downloads/eclipse-packages/) ([direct link to current version](https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/neonr)) and extract the package to the location of your choice (this creates an `eclipse` folder). |
36 | 36 | ||
37 | ## First Launch | 37 | ## First Launch |
38 | When installation is complete, click the <kbd>Launch</kbd> button. (If you extracted the package manually, open the Eclipse installation folder and double-click the `eclipse` executable) | 38 | When installation is complete, click the <kbd>Launch</kbd> button. (If you extracted the package manually, open the Eclipse installation folder and double-click the `eclipse` executable) |
@@ -44,8 +44,8 @@ Once started, click the <kbd>Workbench</kbd> button at the top right to switch t | |||
44 | ## Install the Necessary Plugins | 44 | ## Install the Necessary Plugins |
45 | Note: you do not need to restart Eclipse after installing each plugin. Simply restart once all plugins are installed. | 45 | Note: you do not need to restart Eclipse after installing each plugin. Simply restart once all plugins are installed. |
46 | 46 | ||
47 | ### [The AVR Plugin](http://avr-eclipse.sourceforge.net/) | 47 | ### [The AVR Plugin](https://avr-eclipse.sourceforge.net/) |
48 | This is the most important plugin as it will allow Eclipse to _understand_ AVR C code. Follow [the instructions for using the update site](http://avr-eclipse.sourceforge.net/wiki/index.php/Plugin_Download#Update_Site), and agree with the security warning for unsigned content. | 48 | This is the most important plugin as it will allow Eclipse to _understand_ AVR C code. Follow [the instructions for using the update site](https://avr-eclipse.sourceforge.net/wiki/index.php/Plugin_Download#Update_Site), and agree with the security warning for unsigned content. |
49 | 49 | ||
50 | ### [ANSI Escape in Console](https://marketplace.eclipse.org/content/ansi-escape-console) | 50 | ### [ANSI Escape in Console](https://marketplace.eclipse.org/content/ansi-escape-console) |
51 | This plugin is necessary to properly display the colored build output generated by the QMK makefile. | 51 | This plugin is necessary to properly display the colored build output generated by the QMK makefile. |
@@ -66,7 +66,7 @@ Once both plugins are installed, restart Eclipse as prompted. | |||
66 | * Select the _AVR-GCC Toolchain_; | 66 | * Select the _AVR-GCC Toolchain_; |
67 | * Keep the rest as-is and click <kbd>Finish</kbd> | 67 | * Keep the rest as-is and click <kbd>Finish</kbd> |
68 | 68 | ||
69 |  | 69 |  |
70 | 70 | ||
71 | 3. The project will now be loaded and indexed. Its files can be browsed easily through the _Project Explorer_ on the left. | 71 | 3. The project will now be loaded and indexed. Its files can be browsed easily through the _Project Explorer_ on the left. |
72 | 72 | ||