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

github.com/ClusterM/ibutton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'usart.h')
-rw-r--r--usart.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/usart.h b/usart.h
new file mode 100644
index 0000000..207e60f
--- /dev/null
+++ b/usart.h
@@ -0,0 +1,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