mirror of https://github.com/ARMmbed/mbed-os.git
Replace USBTX/RX
parent
3e63fd911c
commit
8600157f62
|
|
@ -232,7 +232,7 @@ Other alternatives to printing to stdout are by calling `puts` or `write`.
|
||||||
puts("Hello");
|
puts("Hello");
|
||||||
```
|
```
|
||||||
```C
|
```C
|
||||||
BufferedSerial pc(USBTX, USBRX);
|
BufferedSerial pc(CONSOLE_TX, CONSOLE_RX);
|
||||||
pc.write("Hello", 6);
|
pc.write("Hello", 6);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -284,7 +284,7 @@ static void greentea_write_int(const int val)
|
||||||
* \brief Encapsulate and send key-value message from DUT to host
|
* \brief Encapsulate and send key-value message from DUT to host
|
||||||
*
|
*
|
||||||
* This function uses underlying functions to write directly
|
* This function uses underlying functions to write directly
|
||||||
* to the serial port, (USBTX). This allows KVs to be used
|
* to the serial port, (CONSOLE_TX). This allows KVs to be used
|
||||||
* from within interrupt context.
|
* from within interrupt context.
|
||||||
*
|
*
|
||||||
* \param key Message key (message/event name)
|
* \param key Message key (message/event name)
|
||||||
|
|
@ -305,7 +305,7 @@ extern "C" void greentea_send_kv(const char *key, const char *val) {
|
||||||
* \brief Encapsulate and send key-value message from DUT to host
|
* \brief Encapsulate and send key-value message from DUT to host
|
||||||
*
|
*
|
||||||
* This function uses underlying functions to write directly
|
* This function uses underlying functions to write directly
|
||||||
* to the serial port, (USBTX). This allows KVs to be used
|
* to the serial port, (CONSOLE_TX). This allows KVs to be used
|
||||||
* from within interrupt context.
|
* from within interrupt context.
|
||||||
* Last value is an integer to avoid integer to string conversion
|
* Last value is an integer to avoid integer to string conversion
|
||||||
* made by the user.
|
* made by the user.
|
||||||
|
|
@ -328,7 +328,7 @@ void greentea_send_kv(const char *key, const int val) {
|
||||||
* \brief Encapsulate and send key-value-value message from DUT to host
|
* \brief Encapsulate and send key-value-value message from DUT to host
|
||||||
*
|
*
|
||||||
* This function uses underlying functions to write directly
|
* This function uses underlying functions to write directly
|
||||||
* to the serial port, (USBTX). This allows KVs to be used
|
* to the serial port, (CONSOLE_TX). This allows KVs to be used
|
||||||
* from within interrupt context.
|
* from within interrupt context.
|
||||||
* Last value is an integer to avoid integer to string conversion
|
* Last value is an integer to avoid integer to string conversion
|
||||||
* made by the user.
|
* made by the user.
|
||||||
|
|
@ -355,7 +355,7 @@ void greentea_send_kv(const char *key, const char *val, const int result) {
|
||||||
* \brief Encapsulate and send key-value-value-value message from DUT to host
|
* \brief Encapsulate and send key-value-value-value message from DUT to host
|
||||||
*
|
*
|
||||||
* This function uses underlying functions to write directly
|
* This function uses underlying functions to write directly
|
||||||
* to the serial port, (USBTX). This allows KVs to be used
|
* to the serial port, (CONSOLE_TX). This allows KVs to be used
|
||||||
* from within interrupt context.
|
* from within interrupt context.
|
||||||
* Last 2 values are integers to avoid integer to string conversion
|
* Last 2 values are integers to avoid integer to string conversion
|
||||||
* made by the user.
|
* made by the user.
|
||||||
|
|
@ -389,7 +389,7 @@ void greentea_send_kv(const char *key, const char *val, const int passes, const
|
||||||
* \brief Encapsulate and send key-value-value message from DUT to host
|
* \brief Encapsulate and send key-value-value message from DUT to host
|
||||||
*
|
*
|
||||||
* This function uses underlying functions to write directly
|
* This function uses underlying functions to write directly
|
||||||
* to the serial port, (USBTX). This allows key-value-value to be used
|
* to the serial port, (CONSOLE_TX). This allows key-value-value to be used
|
||||||
* from within interrupt context.
|
* from within interrupt context.
|
||||||
* Both values are integers to avoid integer to string conversion
|
* Both values are integers to avoid integer to string conversion
|
||||||
* made by the user.
|
* made by the user.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue