#include "board.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
Go to the source code of this file.
Defines | |
#define | BASE_UART UART4 |
#define | BASE_ID ID_UART4 |
#define | BASE_IRQ UART4_IRQn |
#define | RX_SIZE 30 |
Functions | |
void | UART4_Handler () |
Handler for UART4. | |
void | XDMAC_Handler (void) |
Handler for XDMAC. | |
int | main (void) |
Application entry point for UART example. | |
Variables | |
const Pin | BASE_UART_PINS [] = {PINS_UART4} |
uint8_t | pTxBuffer [] = {"This is UART Tx Buffer.........\n\r"} |
uint8_t | pRxBuffer [RX_SIZE] |
This file contains all the specific code for the UART example.
Definition in file main.c.