Skip to content

Replace RawSerial references #1241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,10 @@
"path": "docs/api/io/FlashIAP.md"
},
{
"path": "docs/api/io/RawSerial.md"
"path": "docs/api/io/BufferedSerial.md"
},
{
"path": "docs/api/io/UnbufferedSerial.md"
},
{
"path": "docs/api/io/Serial.md"
Expand Down
3 changes: 2 additions & 1 deletion docs/api/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
<td><a href="analogout.html">AnalogOut</a></td>
<td><a href="portin.html">PortIn</a></td>
<td><a href="timer.html">Timer</a></td>
<td><a href="rawserial.html">RawSerial</a></td>
<td><a href="bufferedserial.html">BufferedSerial</a></td>
<td><a href="unbufferedserial.html">UnbufferedSerial</a></td>
<td><a href="can.html">CAN</a></td>
</tr>
<tr>
Expand Down
47 changes: 0 additions & 47 deletions docs/api/io/RawSerial.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/api/io/UnbufferedSerial.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You can view more information about the configurable settings and functions in t

<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>

## Example
## UnbufferedSerial Example

[![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)

Expand Down
2 changes: 1 addition & 1 deletion docs/api/platform/platform-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Name: platform.cthunk_count_max
Macro name: MBED_CONF_PLATFORM_CTHUNK_COUNT_MAX
Value: 8 (set by library:platform)
Name: platform.default-serial-baud-rate
Description: Default baud rate for a Serial or RawSerial instance (if not specified in the constructor)
Description: Default baud rate for a serial object (if not specified in the constructor)
Defined by: library:platform
Macro name: MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE
Value: 9600 (set by library:platform)
Expand Down
3 changes: 2 additions & 1 deletion docs/api/tutorials_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ These tutorials and examples show you how to perform specific tasks that use the
| LowPowerTimeout | [LowPowerTimeout example](../apis/lowpowertimeout.html#lowpowertimeout-example) | |
| LowPowerTimer | [LowPowerTimer example](../apis/lowpowertimer.html#lowpowertimer-example) | |
| Flash IAP | [Flash IAP example](../apis/flash-iap.html#flash-iap-example) | |
| RawSerial | [RawSerial example](../apis/rawserial.html#rawserial-examples) | [RawSerial Hello, World](../apis/rawserial.html#rawserial-hello-world) |
| BufferedSerial | [BufferedSerial example](../apis/bufferedserial.html#bufferedserial-examples) | |
| UnbufferedSerial | [UnbufferedSerial example](../apis/unbufferedserial.html#unbufferedserial-example) | |
| Serial | [Serial example](../apis/serial.html#serial-examples) | [Serial Hello, World](../apis/serial.html#serial-hello-world) |
| SPI | | [SPI Hello, World](../apis/spi.html#spi-hello-world) |
| SPISlave | [SPISlave example](/apis/spislave.html#spislave-example) | |
Expand Down