]> git.donarmstrong.com Git - qmk_firmware.git/blob - protocol/lufa/LUFA-120730/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c
Squashed 'tmk_core/' changes from b9e0ea0..caca2c0
[qmk_firmware.git] / protocol / lufa / LUFA-120730 / LUFA / Drivers / Peripheral / XMEGA / Serial_XMEGA.c
1 /*\r
2              LUFA Library\r
3      Copyright (C) Dean Camera, 2012.\r
4 \r
5   dean [at] fourwalledcubicle [dot] com\r
6            www.lufa-lib.org\r
7 */\r
8 \r
9 /*\r
10   Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
11 \r
12   Permission to use, copy, modify, distribute, and sell this\r
13   software and its documentation for any purpose is hereby granted\r
14   without fee, provided that the above copyright notice appear in\r
15   all copies and that both that the copyright notice and this\r
16   permission notice and warranty disclaimer appear in supporting\r
17   documentation, and that the name of the author not be used in\r
18   advertising or publicity pertaining to distribution of the\r
19   software without specific, written prior permission.\r
20 \r
21   The author disclaim all warranties with regard to this\r
22   software, including all implied warranties of merchantability\r
23   and fitness.  In no event shall the author be liable for any\r
24   special, indirect or consequential damages or any damages\r
25   whatsoever resulting from loss of use, data or profits, whether\r
26   in an action of contract, negligence or other tortious action,\r
27   arising out of or in connection with the use or performance of\r
28   this software.\r
29 */\r
30 \r
31 #include "../../../Common/Common.h"\r
32 #if (ARCH == ARCH_XMEGA)\r
33 \r
34 #define  __INCLUDE_FROM_SERIAL_C\r
35 #include "../Serial.h"\r
36 \r
37 FILE USARTSerialStream;\r
38 \r
39 int Serial_putchar(char DataByte,\r
40                    FILE *Stream)\r
41 {\r
42         USART_t* USART = fdev_get_udata(Stream);\r
43 \r
44         Serial_SendByte(USART, DataByte);\r
45         return 0;\r
46 }\r
47 \r
48 int Serial_getchar(FILE *Stream)\r
49 {\r
50         USART_t* USART = fdev_get_udata(Stream);\r
51 \r
52         if (!(Serial_IsCharReceived(USART)))\r
53           return _FDEV_EOF;\r
54 \r
55         return Serial_ReceiveByte(USART);\r
56 }\r
57 \r
58 int Serial_getchar_Blocking(FILE *Stream)\r
59 {\r
60         USART_t* USART = fdev_get_udata(Stream);\r
61 \r
62         while (!(Serial_IsCharReceived(USART)));\r
63         return Serial_ReceiveByte(USART);\r
64 }\r
65 \r
66 void Serial_SendString_P(USART_t* const USART,\r
67                          const char* FlashStringPtr)\r
68 {\r
69         uint8_t CurrByte;\r
70 \r
71         while ((CurrByte = pgm_read_byte(FlashStringPtr)) != 0x00)\r
72         {\r
73                 Serial_SendByte(USART, CurrByte);\r
74                 FlashStringPtr++;\r
75         }\r
76 }\r
77 \r
78 void Serial_SendString(USART_t* const USART,\r
79                        const char* StringPtr)\r
80 {\r
81         uint8_t CurrByte;\r
82 \r
83         while ((CurrByte = *StringPtr) != 0x00)\r
84         {\r
85                 Serial_SendByte(USART, CurrByte);\r
86                 StringPtr++;\r
87         }\r
88 }\r
89 \r
90 void Serial_SendData(USART_t* const USART,\r
91                      const uint8_t* Buffer,\r
92                      uint16_t Length)\r
93 {\r
94         while (Length--)\r
95           Serial_SendByte(USART, *(Buffer++));\r
96 }\r
97 \r
98 void Serial_CreateStream(FILE* Stream)\r
99 {\r
100         if (!(Stream))\r
101         {\r
102                 Stream = &USARTSerialStream;\r
103                 stdin  = Stream;\r
104                 stdout = Stream;\r
105         }\r
106 \r
107         *Stream = (FILE)FDEV_SETUP_STREAM(Serial_putchar, Serial_getchar, _FDEV_SETUP_RW);\r
108 }\r
109 \r
110 void Serial_CreateBlockingStream(FILE* Stream)\r
111 {\r
112         if (!(Stream))\r
113         {\r
114                 Stream = &USARTSerialStream;\r
115                 stdin  = Stream;\r
116                 stdout = Stream;\r
117         }\r
118 \r
119         *Stream = (FILE)FDEV_SETUP_STREAM(Serial_putchar, Serial_getchar_Blocking, _FDEV_SETUP_RW);\r
120 }\r
121 \r
122 #endif\r