Skip to content

Commit 6fac961

Browse files
massonalfpistm
authored andcommitted
update links to arduino-cli doc to point to latest
1 parent 5484ebf commit 6fac961

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

_cmake/Arduino (in)compatibility.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This means that, while CMake can discover all the source files when it is manual
1313
it may not be reinvoked (as should be) after a source file is added, since it was not "monitoring" that file in the first place.
1414
Please reat the [warning note](https://cmake.org/cmake/help/latest/command/file.html#glob) in the CMake documentation for details.
1515

16-
Also, as mentioned in [the Arduino documentation](https://arduino.github.io/arduino-cli/0.21/sketch-build-process/#pre-processing), all the
16+
Also, as mentioned in [the Arduino documentation](https://arduino.github.io/arduino-cli/latest/sketch-build-process/#pre-processing), all the
1717
`.ino` files of the sketch are concatenated during the pre-processing step.
1818
This is not implemented with CMake, as most sketches have a single `.ino` file, but if you fill the need for this feature, please submit a PR!
1919

@@ -35,7 +35,7 @@ It is, however, possible to reuse the libraries installed by `arduino-cli`, e.g.
3535

3636
Second item, Arduino IDE discovers at compile-time what libraries the sketch needs.
3737
This is done by catching GCC errors during the preprocessing stage, and fuzzy matching the missing `#include` with all the available libraries,
38-
as described in [their documentation](https://arduino.github.io/arduino-cli/0.21/sketch-build-process/#dependency-resolution).
38+
as described in [their documentation](https://arduino.github.io/arduino-cli/latest/sketch-build-process/#dependency-resolution).
3939

4040
CMake does not have access to all these data _at configure-time_; also, it does not model the preprocessing at all.
4141
This means the dependency resolution process, if implemented, would have been awkward and fragile.
@@ -45,4 +45,4 @@ This is why another solution has been preferred: to have the user fill in all th
4545
# Upload, serial monitor, debugger
4646

4747
These items are out of the scope of a CMake-based tool. Your IDE may handle (part of) those features; please refer to its documentation.
48-
As a fallback, [`arduino-cli`](https://arduino.github.io/arduino-cli/0.25/) may also be used to these ends.
48+
As a fallback, [`arduino-cli`](https://arduino.github.io/arduino-cli/latest/) may also be used to these ends.

_cmake/Setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The two (this, and the Python module) are really optional requirement; if you on
4444

4545
You may use the [quickstart script](./Quickstart-guide) to get started easily.
4646
This tool uses `arduino-cli` to inherit from your default Arduino installation.
47-
Learn how to install it [here](https://arduino.github.io/arduino-cli/0.21/installation/).
47+
Learn how to install it [here](https://arduino.github.io/arduino-cli/latest/installation/).
4848

4949
## Compiler
5050

_custom/Custom-board-based-on-a-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Custom board based on a core
22

33
Arduino offers the possibility to create a custom board support based on an other core:
4-
[Referencing another core, variant or tool.](https://arduino.github.io/arduino-cli/0.19/platform-specification/#referencing-another-core-variant-or-tool)
4+
[Referencing another core, variant or tool.](https://arduino.github.io/arduino-cli/latest/platform-specification/#referencing-another-core-variant-or-tool)
55

66
[@RickKimball](https://github.com/RickKimball) provides a great use case based on the STM32 core:
77

88
As he mentioned [here](https://github.com/stm32duino/Arduino_Core_STM32/issues/67#issuecomment-504711764):
9-
9+
1010
> Just be warned I haven't tried that GitHub since you added the BluePill as an official board. However, it does give hints at some of the things they might need to do. Just don't expect me to answer questions on why someone's personal board doesn't work. : )
1111
1212
https://github.com/RickKimball/vendor

0 commit comments

Comments
 (0)