]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A5_SAMA5D3x_Xplained_IAR/AtmelFiles/usb/common/cdc/CDCSetControlLineStateRequest.c
SAMA5D3 demo: Add CDC driver code and use CDC to create a simple command console.
[freertos] / FreeRTOS / Demo / CORTEX_A5_SAMA5D3x_Xplained_IAR / AtmelFiles / usb / common / cdc / CDCSetControlLineStateRequest.c
1 /* ----------------------------------------------------------------------------\r
2  *         ATMEL Microcontroller Software Support \r
3  * ----------------------------------------------------------------------------\r
4  * Copyright (c) 2008, Atmel Corporation\r
5  *\r
6  * All rights reserved.\r
7  *\r
8  * Redistribution and use in source and binary forms, with or without\r
9  * modification, are permitted provided that the following conditions are met:\r
10  *\r
11  * - Redistributions of source code must retain the above copyright notice,\r
12  * this list of conditions and the disclaimer below.\r
13  *\r
14  * Atmel's name may not be used to endorse or promote products derived from\r
15  * this software without specific prior written permission.\r
16  *\r
17  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR\r
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
20  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,\r
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\r
23  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r
24  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\r
26  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
27  * ----------------------------------------------------------------------------\r
28  */\r
29 \r
30 /** \file\r
31  *\r
32  * Implementation of the CDCSetControlLineStateRequest class.\r
33  */\r
34 \r
35 /** \addtogroup usb_cdc\r
36  *@{\r
37  */\r
38 \r
39 /*----------------------------------------------------------------------------\r
40  *         Headers\r
41  *----------------------------------------------------------------------------*/\r
42 \r
43 #include <CDCRequests.h>\r
44 \r
45 /*----------------------------------------------------------------------------\r
46  *         Exported functions\r
47  *----------------------------------------------------------------------------*/\r
48 \r
49 /**\r
50  *  Notifies if the given request indicates that the DTE signal is present.\r
51  *  \param request Pointer to a USBGenericRequest instance.\r
52  *  \return 1 if the DTE signal is present, otherwise 0.\r
53  */\r
54 uint8_t CDCSetControlLineStateRequest_IsDtePresent(\r
55     const USBGenericRequest *request)\r
56 {\r
57     if ((USBGenericRequest_GetValue(request) & 0x0001) != 0) {\r
58 \r
59         return 1;\r
60     }\r
61     else {\r
62 \r
63         return 0;\r
64     }\r
65 }\r
66 \r
67 /**\r
68  *  Notifies if the given request indicates that the device carrier should\r
69  *  be activated.\r
70  *  \param request Pointer to a USBGenericRequest instance.\r
71  *  \return 1 is the device should activate its carrier, 0 otherwise.\r
72  */\r
73 uint8_t CDCSetControlLineStateRequest_ActivateCarrier(\r
74     const USBGenericRequest *request)\r
75 {\r
76     if ((USBGenericRequest_GetValue(request) & 0x0002) != 0) {\r
77 \r
78         return 1;\r
79     }\r
80     else {\r
81 \r
82         return 0;\r
83     }\r
84 }\r
85 \r
86 /**@}*/\r
87 \r