Skip to content

Commit f06bbe0

Browse files
committed
Remove old version mentions
Mentions referring to versions below 1.0 was removed. These are likely 15+ years old, as we are now in version 2.3.x of the IDE
1 parent d7a52c6 commit f06bbe0

File tree

12 files changed

+11
-14
lines changed

12 files changed

+11
-14
lines changed

Diff for: Language/Functions/Communication/Serial/flush.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ title: Serial.flush()
1414

1515
[float]
1616
=== Description
17-
Waits for the transmission of outgoing serial data to complete. (Prior to Arduino 1.0, this instead removed any buffered incoming serial data.)
17+
Waits for the transmission of outgoing serial data to complete.
1818

1919
`flush()` inherits from the link:../../stream/streamflush[Stream] utility class.
2020
[%hardbreaks]

Diff for: Language/Functions/Communication/Serial/ifSerial.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Indicates if the specified Serial port is ready.
1818

1919
On the boards with native USB, `if (Serial)` (or `if(SerialUSB)` on the Due) indicates whether or not the USB CDC serial connection is open. For all other boards, and the non-USB CDC ports, this will always return true.
2020

21-
This was introduced in Arduino IDE 1.0.1.
2221
[%hardbreaks]
2322

2423

Diff for: Language/Functions/Communication/Serial/write.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void loop() {
6565

6666
[float]
6767
=== Notes and Warnings
68-
As of Arduino IDE 1.0, serial transmission is asynchronous. If there is enough empty space in the transmit buffer, `Serial.write()` will return before any characters are transmitted over serial. If the transmit buffer is full then `Serial.write()` will block until there is enough space in the buffer. To avoid blocking calls to `Serial.write()`, you can first check the amount of free space in the transmit buffer using link:../availableforwrite[availableForWrite()].
68+
Serial transmission is asynchronous. If there is enough empty space in the transmit buffer, `Serial.write()` will return before any characters are transmitted over serial. If the transmit buffer is full then `Serial.write()` will block until there is enough space in the buffer. To avoid blocking calls to `Serial.write()`, you can first check the amount of free space in the transmit buffer using link:../availableforwrite[availableForWrite()].
6969

7070
--
7171
// HOW TO USE SECTION ENDS

Diff for: Language/Functions/Communication/Wire.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ subCategories: [ "Communication" ]
1616
=== Description
1717

1818

19-
This library allows you to communicate with I2C/TWI devices. On the Arduino boards with the R3 layout (1.0 pinout), the SDA (data line) and SCL (clock line) are on the pin headers close to the AREF pin. The Arduino Due has two I2C/TWI interfaces SDA1 and SCL1 are near to the AREF pin and the additional one is on pins 20 and 21.
19+
This library allows you to communicate with I2C/TWI devices. On the Arduino boards with the R3 layout, the SDA (data line) and SCL (clock line) are on the pin headers close to the AREF pin. The Arduino Due has two I2C/TWI interfaces SDA1 and SCL1 are near to the AREF pin and the additional one is on pins 20 and 21.
2020

2121
As a reference the table below shows where TWI pins are located on various Arduino boards.
2222

@@ -36,7 +36,7 @@ As a reference the table below shows where TWI pins are located on various Ardui
3636
|===
3737

3838

39-
As of Arduino 1.0, the library inherits from the Stream functions, making it consistent with other read/write libraries. Because of this, `send()` and `receive()` have been replaced with `read()` and `write()`.
39+
This library inherits from the Stream functions, making it consistent with other read/write libraries. Because of this, `send()` and `receive()` have been replaced with `read()` and `write()`.
4040

4141
Recent versions of the Wire library can use timeouts to prevent a lockup in the face of certain problems on the bus, but this is not enabled by default (yet) in current versions. It is recommended to always enable these timeouts when using the Wire library. See the Wire.setWireTimeout function for more details.
4242

Diff for: Language/Functions/Communication/Wire/endTransmission.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title: endTransmission()
1010

1111
[float]
1212
=== Description
13-
This function ends a transmission to a peripheral device that was begun by `beginTransmission()` and transmits the bytes that were queued by `write()`. As of Arduino 1.0.1, `endTransmission()` accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `endTransmission()` sends a stop message after transmission, releasing the I2C bus. If false, `endTransmission()` sends a restart message after transmission. The bus will not be released, which prevents another controller device from transmitting between messages. This allows one controller device to send multiple transmissions while in control. The default value is true.
13+
This function ends a transmission to a peripheral device that was begun by `beginTransmission()` and transmits the bytes that were queued by `write()`. The `endTransmission()` method accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `endTransmission()` sends a stop message after transmission, releasing the I2C bus. If false, `endTransmission()` sends a restart message after transmission. The bus will not be released, which prevents another controller device from transmitting between messages. This allows one controller device to send multiple transmissions while in control. The default value is true.
1414

1515
[float]
1616
=== Syntax

Diff for: Language/Functions/Communication/Wire/requestFrom.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: requestFrom()
1111

1212
[float]
1313
=== Description
14-
This function is used by the controller device to request bytes from a peripheral device. The bytes may then be retrieved with the `available()` and `read()` functions. As of Arduino 1.0.1, `requestFrom()` accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `requestFrom()` sends a stop message after the request, releasing the I2C bus. If false, `requestFrom()` sends a restart message after the request. The bus will not be released, which prevents another master device from requesting between messages. This allows one master device to send multiple requests while in control. The default value is true.
14+
This function is used by the controller device to request bytes from a peripheral device. The bytes may then be retrieved with the `available()` and `read()` functions. The `requestFrom()` method accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `requestFrom()` sends a stop message after the request, releasing the I2C bus. If false, `requestFrom()` sends a restart message after the request. The bus will not be released, which prevents another master device from requesting between messages. This allows one master device to send multiple requests while in control. The default value is true.
1515

1616
[float]
1717
=== Syntax

Diff for: Language/Functions/Digital IO/pinMode.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ subCategories: [ "Digital I/O" ]
1919
=== Description
2020
Configures the specified pin to behave either as an input or an output. See the http://arduino.cc/en/Tutorial/DigitalPins[Digital Pins] page for details on the functionality of the pins.
2121
[%hardbreaks]
22-
As of Arduino 1.0.1, it is possible to enable the internal pullup resistors with the mode `INPUT_PULLUP`. Additionally, the `INPUT` mode explicitly disables the internal pullups.
22+
It is possible to enable the internal pullup resistors with the mode `INPUT_PULLUP`. Additionally, the `INPUT` mode explicitly disables the internal pullups.
2323
[%hardbreaks]
2424

2525

Diff for: Language/Functions/Time/delayMicroseconds.adoc

-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ void loop() {
7373
=== Notes and Warnings
7474
This function works very accurately in the range 3 microseconds and up to 16383. We cannot assure that delayMicroseconds will perform precisely for smaller delay-times. Larger delay times may actually delay for an extremely brief time.
7575

76-
As of Arduino 0018, delayMicroseconds() no longer disables interrupts.
77-
7876
--
7977
// HOW TO USE SECTION ENDS
8078

Diff for: Language/Variables/Data Types/String/Functions/toLowerCase.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "StringObject Function" ]
1717

1818
[float]
1919
=== Description
20-
Get a lower-case version of a String. As of 1.0, toLowerCase() modifies the String in place rather than returning a new one.
20+
Get a lower-case version of a String. The `toLowerCase()` function modifies the String in place rather than returning a new one.
2121

2222
[%hardbreaks]
2323

Diff for: Language/Variables/Data Types/String/Functions/toUpperCase.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "StringObject Function" ]
1717

1818
[float]
1919
=== Description
20-
Get an upper-case version of a String. As of 1.0, toUpperCase() modifies the String in place rather than returning a new one.
20+
Get an upper-case version of a String. The `toUpperCase()` modifies the String in place rather than returning a new one.
2121
[%hardbreaks]
2222

2323

Diff for: Language/Variables/Data Types/String/Functions/trim.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "StringObject Function" ]
1717

1818
[float]
1919
=== Description
20-
Get a version of the String with any leading and trailing whitespace removed. As of 1.0, trim() modifies the String in place rather than returning a new one.
20+
Get a version of the String with any leading and trailing whitespace removed. The `trim()` function modifies the String in place rather than returning a new one.
2121

2222
[%hardbreaks]
2323

Diff for: Language/Variables/Data Types/string.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subCategories: [ "Data Types" ]
1212

1313
[float]
1414
=== Description
15-
Text strings can be represented in two ways. you can use the String data type, which is part of the core as of version 0019, or you can make a string out of an array of type char and null-terminate it. This page described the latter method. For more details on the String object, which gives you more functionality at the cost of more memory, see the link:../stringobject[String object] page.
15+
Text strings can be represented in two ways. you can use the String data type, or you can make a string out of an array of type char and null-terminate it. This page described the latter method. For more details on the String object, which gives you more functionality at the cost of more memory, see the link:../stringobject[String object] page.
1616
[%hardbreaks]
1717

1818
[float]

0 commit comments

Comments
 (0)