Skip to content

Commit 386ea64

Browse files
committed
Broken Links fix
1 parent f2fd284 commit 386ea64

21 files changed

+27
-27
lines changed

Language/Functions/Communication/Print.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Print class is related to several libraries in Arduino that use the printing fun
2222

2323
Some of the libraries that use the Print class are:
2424

25-
* link:../serial[Serial]
25+
* link:https://www.arduino.cc/en/Reference/serial[Serial]
2626
* link:https://reference.arduino.cc/reference/en/libraries/liquidcrystal/[LiquidCrystal]
2727
* link:https://www.arduino.cc/en/Reference/Ethernet[Ethernet]
2828
* link:https://reference.arduino.cc/reference/en/libraries/wifi/wificlient/[Wifi]
@@ -41,8 +41,8 @@ Some of the libraries that use the Print class are:
4141
[float]
4242
=== Functions
4343
link:https://www.arduino.cc/reference/en/language/functions/communication/wire/write/[write()] +
44-
link:https://www.arduino.cc/reference/en/language/functions/communication/serial/print/[print()] +
45-
link:https://www.arduino.cc/reference/en/language/functions/communication/serial/println/[println()]
44+
link:https://www.arduino.cc/en/Reference/serial/print/[print()] +
45+
link:https://www.arduino.cc/en/Reference/serial/println/[println()]
4646

4747
'''
4848

Language/Functions/Communication/Serial/available.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Get the number of bytes (characters) available for reading from the serial port.
2424

2525
[float]
2626
=== Parameters
27-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
27+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
2828

2929

3030
[float]

Language/Functions/Communication/Serial/availableForWrite.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Get the number of bytes (characters) available for writing in the serial buffer
2525

2626
[float]
2727
=== Parameters
28-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
28+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
2929

3030

3131
[float]

Language/Functions/Communication/Serial/begin.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ An optional second argument configures the data, parity, and stop bits. The defa
2828

2929
[float]
3030
=== Parameters
31-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
31+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3232
`speed`: in bits per second (baud). Allowed data types: `long`. +
3333
`config`: sets data, parity, and stop bits. Valid values are: +
3434
`SERIAL_5N1` +
@@ -112,7 +112,7 @@ Thanks to Jeff Gray for the mega example
112112

113113
[float]
114114
=== Notes and Warnings
115-
For USB CDC serial ports (e.g. `Serial` on the Leonardo), `Serial.begin()` is irrelevant. You can use any baud rate and configuration for serial communication with these ports. See the list of available serial ports for each board on the link:../../serial[Serial main page].
115+
For USB CDC serial ports (e.g. `Serial` on the Leonardo), `Serial.begin()` is irrelevant. You can use any baud rate and configuration for serial communication with these ports. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
116116

117117
The only `config` value supported for `Serial1` on the Arduino Nano 33 BLE and Nano 33 BLE Sense boards is `SERIAL_8N1`.
118118
[%hardbreaks]

Language/Functions/Communication/Serial/end.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Disables serial communication, allowing the RX and TX pins to be used for genera
2525

2626
[float]
2727
=== Parameters
28-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
28+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
2929

3030

3131
[float]

Language/Functions/Communication/Serial/find.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ title: Serial.find()
2828

2929
[float]
3030
=== Parameters
31-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
31+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3232
`target`: the string to search for. Allowed data types: `char`. +
3333
`length`: length of the target. Allowed data types: `size_t`.
3434

Language/Functions/Communication/Serial/findUntil.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The function returns true if the target string is found, false if it times out.
2929

3030
[float]
3131
=== Parameters
32-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
32+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3333
`target`: the string to search for. Allowed data types: `char`. +
3434
`terminal`: the terminal string in the search. Allowed data types: `char`.
3535

Language/Functions/Communication/Serial/flush.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Waits for the transmission of outgoing serial data to complete.
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
3131

3232

3333
[float]

Language/Functions/Communication/Serial/parseFloat.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ title: Serial.parseFloat()
2929

3030
[float]
3131
=== Parameters
32-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
32+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3333
`lookahead`: the mode used to look ahead in the stream for a floating point number. Allowed data types: `LookaheadMode`. Allowed `lookahead` values:
3434

3535
* `SKIP_ALL`: all characters other than a minus sign, decimal point, or digits are ignored when scanning the stream for a floating point number. This is the default mode.

Language/Functions/Communication/Serial/parseInt.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In particular:
3535

3636
[float]
3737
=== Parameters
38-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
38+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3939
`lookahead`: the mode used to look ahead in the stream for an integer. Allowed data types: `LookaheadMode`. Allowed `lookahead` values:
4040

4141
* `SKIP_ALL`: all characters other than digits or a minus sign are ignored when scanning the stream for an integer. This is the default mode.

Language/Functions/Communication/Serial/peek.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Returns the next byte (character) of incoming serial data without removing it fr
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
3131

3232

3333
[float]

Language/Functions/Communication/Serial/print.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To send data without conversion to its representation as characters, use link:..
4848

4949
[float]
5050
=== Parameters
51-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
51+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
5252
`val`: the value to print. Allowed data types: any data type.
5353

5454

Language/Functions/Communication/Serial/println.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Prints data to the serial port as human-readable ASCII text followed by a carria
2626

2727
[float]
2828
=== Parameters
29-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
29+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3030
`val`: the value to print. Allowed data types: any data type. +
3131
`format`: specifies the number base (for integral data types) or number of decimal places (for floating point types).
3232

Language/Functions/Communication/Serial/read.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Reads incoming serial data.
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
3131

3232

3333
[float]

Language/Functions/Communication/Serial/readBytes.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ title: Serial.readBytes()
2929

3030
[float]
3131
=== Parameters
32-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
32+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3333
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
3434
`length`: the number of bytes to read. Allowed data types: `int`.
3535

Language/Functions/Communication/Serial/readBytesUntil.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Serial.readBytesUntil() reads characters from the serial buffer into an array. T
2929

3030
[float]
3131
=== Parameters
32-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
32+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3333
`character`: the character to search for. Allowed data types: `char`. +
3434
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
3535
`length`: the number of bytes to read. Allowed data types: `int`.

Language/Functions/Communication/Serial/readString.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ title: Serial.readString()
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page].
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page].
3131

3232

3333
[float]
@@ -85,7 +85,7 @@ The function does not terminate early if the data contains end of line character
8585
=== See also
8686

8787
[role="language"]
88-
* #LANGUAGE# link:../../serial[Serial]
88+
* #LANGUAGE# link:https://www.arduino.cc/en/Reference/serial[Serial]
8989
* #LANGUAGE# link:../begin[begin()]
9090
* #LANGUAGE# link:../end[end()]
9191
* #LANGUAGE# link:../available[available()]

Language/Functions/Communication/Serial/readStringUntil.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ title: Serial.readStringUntil()
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3131
`terminator`: the character to search for. Allowed data types: `char`.
3232

3333

@@ -62,7 +62,7 @@ If the terminator character can't be found, all read characters will be discarde
6262
=== See also
6363

6464
[role="language"]
65-
* #LANGUAGE# link:../../serial[Serial]
65+
* #LANGUAGE# link:https://www.arduino.cc/en/Reference/serial[Serial]
6666
* #LANGUAGE# link:../begin[begin()]
6767
* #LANGUAGE# link:../end[end()]
6868
* #LANGUAGE# link:../available[available()]

Language/Functions/Communication/Serial/setTimeout.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ title: Serial.setTimeout()
2727

2828
[float]
2929
=== Parameters
30-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
30+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
3131
`time`: timeout duration in milliseconds. Allowed data types: `long`.
3232

3333

Language/Functions/Communication/Serial/write.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Writes binary data to the serial port. This data is sent as a byte or series of
2424

2525
[float]
2626
=== Parameters
27-
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
27+
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:https://www.arduino.cc/en/Reference/serial[Serial main page]. +
2828
`val`: a value to send as a single byte. +
2929
`str`: a string to send as a series of bytes. +
3030
`buf`: an array to send as a series of bytes. +

Language/Functions/Communication/stream.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Stream defines the reading functions in Arduino. When using any core functionali
2222

2323
Some of the libraries that rely on Stream include :
2424

25-
* link:../serial[Serial]
26-
* link:https://www.arduino.cc/en/Reference/Wire[Wire]
25+
* link:https://www.arduino.cc/en/Reference/serial[Serial]
26+
* link:https://www.arduino.cc/en/Reference/wire[Wire]
2727
* link:https://www.arduino.cc/en/Reference/Ethernet[Ethernet]
2828
* link:https://www.arduino.cc/en/Reference/SD[SD]
2929

0 commit comments

Comments
 (0)