blob: 3beb3fc316a8b2e88eae947472e3afa6f8866b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
.. _usart:
=======
USART
=======
.. contents::
:local:
Hardware/Circuit Design
-----------------------
The Maple has 3 separate USART devices. In the most simple use case,
the RX and TX pins are used to send data at a predetermined baudrate
with the line voltage level relative to ground. Their usage is
documented in the :ref:`Serial Ports <lang-serial>` language reference
page.
Compatible Devices and Specifications
-------------------------------------
We have successfully used the Maple USART ports with an FT232R-based
USB-serial converter at up to 115200 baud; higher speeds should
certainly be possible.
Recommended Reading
-------------------
* `Wikipedia article on Universal asynchronous receiver/transmitter (USART) <http://en.wikipedia.org/wiki/Universal_asynchronous_receiver/transmitter>`_
* `Arduino reference on Serial <http://arduino.cc/en/Reference/Serial>`_
* STMicro documentation for STM32F103RB microcontroller:
* `Datasheet <http://www.st.com/stonline/products/literature/ds/13587.pdf>`_ (pdf)
* `Reference Manual <http://www.st.com/stonline/products/literature/rm/13902.pdf>`_ (pdf)
|