#include <msp430x44x.h>
#include <msp430/basic_clock.h>
#include <msp430/system_clock.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include "uart.h"
Include dependency graph for uart.c:

Go to the source code of this file.
Functions | |
| void | UART_init (void) |
| Initialize UART (RS232) port: 9600 baud, 8n1. | |
| void | UART_putChar (char c) |
| Send ony byte via UART. | |
| char | UART_getCharIsReady () |
| Check UART's input buffer. | |
| char | UART_getChar () |
| Receive one byte via UART. | |
| void | UART_write (const char *buf, int length) |
| Write string buffer to UART. | |
| void | UART_printf (const char *fmt,...) |
| Printf function which uses UART interface to send. | |
Definition in file uart.c.
| char UART_getChar | ( | ) |
| char UART_getCharIsReady | ( | ) |
| void UART_init | ( | void | ) |
| void UART_printf | ( | const char * | fmt, | |
| ... | ||||
| ) |
| void UART_putChar | ( | char | c | ) |
| void UART_write | ( | const char * | buf, | |
| int | length | |||
| ) |
1.5.1