Skip to content

Commit 98f3c9c

Browse files
authored
Merge pull request #23 from UncleGrumpy/update_urls
2 parents b2b3387 + 0758e4b commit 98f3c9c

File tree

23 files changed

+30
-30
lines changed

23 files changed

+30
-30
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ The example programs in this collection require the following:
2525
* Elixir applications:
2626
* [Elixir](https://elixir-lang.org) Version 1.13 (version compatible with OTP version selected above)
2727

28-
See the [AtomVM Release Notes](https://www.atomvm.net/doc/master/release-notes.html) for information about supported versions of the above software.
28+
See the [AtomVM Release Notes](https://doc.atomvm.org/latest/release-notes.html) for information about supported versions of the above software.
2929

3030
For instructions about how to install these requirements, consult your local operating system documentation and package management system.
3131

32-
The above tools make use of plugins designed specifically to simply the development and deployment of applications on to supported platforms. For more information about these plugins, please refer to the [AtomVM Tooling](https://www.atomvm.net/doc/master/atomvm-tooling.html) documentation.
32+
The above tools make use of plugins designed specifically to simply the development and deployment of applications on to supported platforms. For more information about these plugins, please refer to the [AtomVM Tooling](https://doc.atomvm.org/latest/atomvm-tooling.html) documentation.
3333

34-
These instructions assume you have already deployed the AtomVM virtual machine on to the device on which you are running. For instructions about how to install the AtomVM virtual machine onto devices, see the AtomVM [Getting Started Guide](https://www.atomvm.net/doc/master/getting-started-guide.html).
34+
These instructions assume you have already deployed the AtomVM virtual machine on to the device on which you are running. For instructions about how to install the AtomVM virtual machine onto devices, see the AtomVM [Getting Started Guide](https://doc.atomvm.org/latest/getting-started-guide.html).
3535

3636
### ESP32 Requirements
3737

@@ -45,7 +45,7 @@ In order to flash and run these programs on an ESP32 device, you will need, in a
4545
* Some example applications require the presence of a WiFi Access Point (AP), to which the ESP32 device can connect.
4646
* Some example applications require either an existing WiFi Access Point (AP) or that your personal computer be capable of connecting to the ESP32 acting as a WiFi Access Point (AP).
4747

48-
> For information about supported ESP32 SoCs, see the AtomVM [Release Notes](https://www.atomvm.net/doc/master/release-notes.html).
48+
> For information about supported ESP32 SoCs, see the AtomVM [Release Notes](https://doc.atomvm.org/latest/release-notes.html).
4949
5050
### STM32 Requirements
5151

@@ -58,7 +58,7 @@ In order to flash and run these programs on an STM32 device, you will need, in a
5858
* To use JTAG for flashing and console output debugging, you will need a [st-link v2](https://www.st.com/en/development-tools/st-link-v2.html) or [st-link v3](https://www.st.com/en/development-tools/stlink-v3set.html) device (typically already included on Nucleo and Discovery boards).
5959
* (Recommended) A serial console program, such as [`minicom`](https://en.wikipedia.org/wiki/Minicom).
6060

61-
> For information about supported STM32 development boards, see the AtomVM [Release Notes](https://www.atomvm.net/doc/master/release-notes.html).
61+
> For information about supported STM32 development boards, see the AtomVM [Release Notes](https://doc.atomvm.org/latest/release-notes.html).
6262
6363
### Raspberry Pico Requirements
6464

@@ -70,7 +70,7 @@ In order to flash and run these programs on a Raspberry Pico or Raspberry Pico W
7070
* (Recommended) A serial console program, such as [`minicom`](https://en.wikipedia.org/wiki/Minicom).
7171
* Some example applications require the presence of a WiFi Access Point (AP), to which the Raspberry Pico W device can connect. Note that these examples are only supported on the Raspberry Pico W.
7272

73-
> For information about supported Raspberry Pico devices, see the AtomVM [Release Notes](https://www.atomvm.net/doc/master/release-notes.html).
73+
> For information about supported Raspberry Pico devices, see the AtomVM [Release Notes](https://doc.atomvm.org/latest/release-notes.html).
7474
7575
### Generic Unix Requirements
7676

demos/morse_server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Your ESP can be reached with a web browser on port 8080 by its IP address or DHC
4141

4242
"http://192.168.0.32:8080" or "http://atomvm-240ac458d278:8080"
4343

44-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
44+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
4545

4646
## Supported Platforms
4747

elixir/Blinky/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ To run this example, depending on how bright you want your led, connect a 220 oh
3131
3232
> Pico-W Note. To use the onboard LED on a `picow` edit lib/Blinky.ex and comment out the current `@pin` definition (change to: `# @pin 2`), and uncomment the definition for the picow onboard LED `@pin` definition: `@pin {:wl, 0}`.
3333
34-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
34+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
3535

3636
For general information about building and executing Elixir AtomVM example programs, see the Elixir example program [README](../README.md).

elixir/HelloWorld/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Welcome to the `HelloWorld` AtomVM application.
1010

1111
The `HelloWorld` AtomVM application prints "Hello World" to the console and then terminates.
1212

13-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
13+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
1414

1515
For general information about building and executing Elixir AtomVM example programs, see the Elixir example program [README](../README.md).

elixir/LEDC_Example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ The `LEDC_Example` AtomVM application illustrates use of the AtomVM `LEDC` inter
1313
LEDs are wired to GPIO pins 4, 5, 18, and 19 and should use a resistor (minimum 100 Ohm up to 1K, 220 Ohm is a good choice). Change the number
1414
for the GPIO pins in the example if necessary. See the Blinky example for wiring if you are unsure.
1515

16-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
16+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
1717

1818
For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

erlang/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To build and run an example in this directory, change your working directory to
4141

4242
The following generic instructions apply to the Erlang examples in this repository. Special notes about building and running the example programs that deviate from these instructions are noted in the README file for the particular example program.
4343

44-
These instructions make use of the [`atomvm_rebar3_plugin`](https://atomvm.github.io/atomvm_rebar3_plugin). For more information about AtomVM tooling, please see the [AtomVM Tooling](https://www.atomvm.net/doc/master/atomvm-tooling.html) documentation.
44+
These instructions make use of the [`atomvm_rebar3_plugin`](https://atomvm.github.io/atomvm_rebar3_plugin). For more information about AtomVM tooling, please see the [AtomVM Tooling](https://doc.atomvm.org/latest/atomvm-tooling.html) documentation.
4545

4646
### Building
4747

@@ -73,7 +73,7 @@ To run this application on the STM32 platform, you must flash the application to
7373

7474
#### Flashing onto an STM32 Device
7575

76-
The STM32 platform requires that the core AtomVM library be included in the application you are targeting for the device. For information about how to obtain this library, see the [AtomVM Tooling](https://www.atomvm.net/doc/master/atomvm-tooling.html) documentation.
76+
The STM32 platform requires that the core AtomVM library be included in the application you are targeting for the device. For information about how to obtain this library, see the [AtomVM Tooling](https://doc.atomvm.org/latest/atomvm-tooling.html) documentation.
7777

7878
Once you have obtained this library, you must use the `packeam` task to create the AVM file to deploy to your device. Specify the path to the AtomVM core library using the `-e` option, e.g.,
7979

@@ -115,4 +115,4 @@ To run this application on a generic UNIX platform, supply the path to the gener
115115

116116
where `<example-program>` is the name of the example program.
117117

118-
> Note. See the AtomVM [Getting Started Guide](https://www.atomvm.net/doc/master/getting-started-guide.html) for information about how to install AtomVM on the generic UNIX platform.
118+
> Note. See the AtomVM [Getting Started Guide](https://doc.atomvm.org/latest/getting-started-guide.html) for information about how to install AtomVM on the generic UNIX platform.

erlang/arepl_example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Welcome to the `arepl_example` AtomVM application.
1010

1111
The `arepl_example` AtomVM application demonstrates the use of the `arepl` LISP interpreter.
1212

13-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
13+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
1414

1515
## Build and Run Instructions
1616

erlang/blinky/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ To run this example, depending on how bright you want your led, connect a 220 oh
3131
3232
> Pico W Note. To use the onboard LED on a `picow` edit src/blinky.erl and comment out the current `PIN` definition (change to: `% -define(PIN, 2).`), and uncomment the definition for the `picow` onboard LED definition: `-define(PIN, {wl, 0}).`
3333
34-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
34+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
3535

3636
For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

erlang/deep_sleep/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Welcome to the `deep_sleep` AtomVM application.
1010

1111
The `deep_sleep` AtomVM application will put the ESP32 device into low-power deep sleep for 10 seconds, wake up, and report the reset reason. In most cases this will be `esp_rst_deepsleep`, but the initial reset reason will be `esp_rst_poweron`, or if you reset the device manually during sleep.
1212

13-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
13+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
1414

1515
For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

erlang/esp_nvs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Welcome to the `esp_nvs` AtomVM application.
1010

1111
The `esp_nvs` AtomVM application uses the ESP non-volatile storage to record the number of times the device has restarted. If the NVS storage has not been set for this application, it will be intialized with a count of 0. The device will then sleep for 10 seconds, and restart. After each restart, the number of restarts is incremented and stored in non-volatile storage.
1212

13-
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).
13+
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.org/latest/programmers-guide.html).
1414

1515
For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

0 commit comments

Comments
 (0)