You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
4.5 KiB

  1. # UART Driver :id=uart-driver
  2. The UART drivers used in QMK have a set of common functions to allow portability between MCUs.
  3. Currently, this driver does not support enabling hardware flow control (the `RTS` and `CTS` pins) if available, but may do so in future.
  4. ## Usage :id=usage
  5. In most cases, the UART driver code is automatically included if you are using a feature or driver which requires it.
  6. However, if you need to use the driver standalone, add the following to your `rules.mk`:
  7. ```make
  8. UART_DRIVER_REQUIRED = yes
  9. ```
  10. You can then call the UART API by including `uart.h` in your code.
  11. ## AVR Configuration :id=avr-configuration
  12. No special setup is required - just connect the `RX` and `TX` pins of your UART device to the opposite pins on the MCU:
  13. |MCU |`TX`|`RX`|`CTS`|`RTS`|
  14. |-------------|----|----|-----|-----|
  15. |ATmega16/32U2|`D3`|`D2`|`D7` |`D6` |
  16. |ATmega16/32U4|`D3`|`D2`|`D5` |`B7` |
  17. |AT90USB64/128|`D3`|`D2`|*n/a*|*n/a*|
  18. |ATmega32A |`D1`|`D0`|*n/a*|*n/a*|
  19. |ATmega328/P |`D1`|`D0`|*n/a*|*n/a*|
  20. ## ChibiOS/ARM Configuration :id=arm-configuration
  21. You'll need to determine which pins can be used for UART -- as an example, STM32 parts generally have multiple UART peripherals, labeled USART1, USART2, USART3 etc.
  22. To enable UART, modify your board's `mcuconf.h` to enable the peripheral you've chosen, for example:
  23. ```c
  24. #undef STM32_SERIAL_USE_USART2
  25. #define STM32_SERIAL_USE_USART2 TRUE
  26. ```
  27. Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.
  28. | `config.h` override | Description | Default Value |
  29. | --------------------------- | --------------------------------------------------------------- | ------------- |
  30. | `#define UART_DRIVER` | USART peripheral to use - USART1 -> `SD1`, USART2 -> `SD2` etc. | `SD1` |
  31. | `#define UART_TX_PIN` | The pin to use for TX | `A9` |
  32. | `#define UART_TX_PAL_MODE` | The alternate function mode for TX | `7` |
  33. | `#define UART_RX_PIN` | The pin to use for RX | `A10` |
  34. | `#define UART_RX_PAL_MODE` | The alternate function mode for RX | `7` |
  35. | `#define UART_CTS_PIN` | The pin to use for CTS | `A11` |
  36. | `#define UART_CTS_PAL_MODE` | The alternate function mode for CTS | `7` |
  37. | `#define UART_RTS_PIN` | The pin to use for RTS | `A12` |
  38. | `#define UART_RTS_PAL_MODE` | The alternate function mode for RTS | `7` |
  39. ## API :id=api
  40. ### `void uart_init(uint32_t baud)` :id=api-uart-init
  41. Initialize the UART driver. This function must be called only once, before any of the below functions can be called.
  42. #### Arguments :id=api-uart-init-arguments
  43. - `uint32_t baud`
  44. The baud rate to transmit and receive at. This may depend on the device you are communicating with. Common values are 1200, 2400, 4800, 9600, 19200, 38400, 57600, and 115200.
  45. ---
  46. ### `void uart_write(uint8_t data)` :id=api-uart-write
  47. Transmit a single byte.
  48. #### Arguments :id=api-uart-write-arguments
  49. - `uint8_t data`
  50. The byte to write.
  51. ---
  52. ### `uint8_t uart_read(void)` :id=api-uart-read
  53. Receive a single byte.
  54. #### Return Value :id=api-uart-read-return
  55. The byte read from the receive buffer. This function will block if the buffer is empty (ie. no data to read).
  56. ---
  57. ### `void uart_transmit(const uint8_t *data, uint16_t length)` :id=api-uart-transmit
  58. Transmit multiple bytes.
  59. #### Arguments :id=api-uart-transmit-arguments
  60. - `const uint8_t *data`
  61. A pointer to the data to write from.
  62. - `uint16_t length`
  63. The number of bytes to write. Take care not to overrun the length of `data`.
  64. ---
  65. ### `void uart_receive(char *data, uint16_t length)` :id=api-uart-receive
  66. Receive multiple bytes.
  67. #### Arguments :id=api-uart-receive-arguments
  68. - `uint8_t *data`
  69. A pointer to the buffer to read into.
  70. - `uint16_t length`
  71. The number of bytes to read. Take care not to overrun the length of `data`.
  72. ---
  73. ### `bool uart_available(void)` :id=api-uart-available
  74. Return whether the receive buffer contains data. Call this function to determine if `uart_read()` will return data immediately.
  75. #### Return Value :id=api-uart-available-return
  76. `true` if the receive buffer length is non-zero.