Skip to content

Commit d0d26ce

Browse files
committed
Replace RawSerial references
1 parent c288587 commit d0d26ce

File tree

6 files changed

+10
-52
lines changed

6 files changed

+10
-52
lines changed

docs.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,10 @@
328328
"path": "docs/api/io/FlashIAP.md"
329329
},
330330
{
331-
"path": "docs/api/io/RawSerial.md"
331+
"path": "docs/api/io/BufferedSerial.md"
332+
},
333+
{
334+
"path": "docs/api/io/UnbufferedSerial.md"
332335
},
333336
{
334337
"path": "docs/api/io/Serial.md"

docs/api/api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
<td><a href="analogout.html">AnalogOut</a></td>
6363
<td><a href="portin.html">PortIn</a></td>
6464
<td><a href="timer.html">Timer</a></td>
65-
<td><a href="rawserial.html">RawSerial</a></td>
65+
<td><a href="bufferedserial.html">BufferedSerial</a></td>
66+
<td><a href="unbufferedserial.html">UnbufferedSerial</a></td>
6667
<td><a href="can.html">CAN</a></td>
6768
</tr>
6869
<tr>

docs/api/io/RawSerial.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

docs/api/io/UnbufferedSerial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can view more information about the configurable settings and functions in t
1616

1717
<span class="notes">**Note**: On a Windows machine, you need to install a USB serial driver. See [Windows serial configuration](../tutorials/serial-communication.html#windows-serial-driver).</span>
1818

19-
## Example
19+
## UnbufferedSerial Example
2020

2121
[![View code](https://www.mbed.com/embed/?url=https://github.com/ARMmbed/mbed-os-examples-docs_only/blob/master/APIs_Drivers/UnbufferedSerial)](https://github.com/ARMmbed/mbed-os-examples-docs_only/blob/master/APIs_Drivers/UnbufferedSerial/main.cpp)
2222

docs/api/platform/platform-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Name: platform.cthunk_count_max
2626
Macro name: MBED_CONF_PLATFORM_CTHUNK_COUNT_MAX
2727
Value: 8 (set by library:platform)
2828
Name: platform.default-serial-baud-rate
29-
Description: Default baud rate for a Serial or RawSerial instance (if not specified in the constructor)
29+
Description: Default baud rate for a serial object (if not specified in the constructor)
3030
Defined by: library:platform
3131
Macro name: MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE
3232
Value: 9600 (set by library:platform)

docs/api/tutorials_intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ These tutorials and examples show you how to perform specific tasks that use the
6363
| LowPowerTimeout | [LowPowerTimeout example](../apis/lowpowertimeout.html#lowpowertimeout-example) | |
6464
| LowPowerTimer | [LowPowerTimer example](../apis/lowpowertimer.html#lowpowertimer-example) | |
6565
| Flash IAP | [Flash IAP example](../apis/flash-iap.html#flash-iap-example) | |
66-
| RawSerial | [RawSerial example](../apis/rawserial.html#rawserial-examples) | [RawSerial Hello, World](../apis/rawserial.html#rawserial-hello-world) |
66+
| BufferedSerial | [BufferedSerial example](../apis/bufferedserial.html#bufferedserial-examples) | |
67+
| UnbufferedSerial | [UnbufferedSerial example](../apis/unbufferedserial.html#unbufferedserial-example) | |
6768
| Serial | [Serial example](../apis/serial.html#serial-examples) | [Serial Hello, World](../apis/serial.html#serial-hello-world) |
6869
| SPI | | [SPI Hello, World](../apis/spi.html#spi-hello-world) |
6970
| SPISlave | [SPISlave example](/apis/spislave.html#spislave-example) | |

0 commit comments

Comments
 (0)