Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usart.h - github.com/ClusterM/ibutton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 207e60ffb1d0544f1057314b31acf0150193592b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _USART_H
#define _USART_H

void USART_init(void);
void USART_TransmitByte( unsigned char data );
void USART_TransmitText(char* data);
void USART_Transmit(void* p, unsigned long int len);
void USART_TransmitHex(unsigned char data);

#endif