]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_M4_ATSAM4S_Atmel_Studio/src/asf/common/services/gpio/gpio.h
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / CORTEX_M4_ATSAM4S_Atmel_Studio / src / asf / common / services / gpio / gpio.h
1 /**\r
2  * \file\r
3  *\r
4  * \brief Common GPIO API.\r
5  *\r
6  * Copyright (c) 2010 Atmel Corporation. All rights reserved.\r
7  *\r
8  * \asf_license_start\r
9  *\r
10  * Redistribution and use in source and binary forms, with or without\r
11  * modification, are permitted provided that the following conditions are met:\r
12  *\r
13  * 1. Redistributions of source code must retain the above copyright notice,\r
14  *    this list of conditions and the following disclaimer.\r
15  *\r
16  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
17  *    this list of conditions and the following disclaimer in the documentation\r
18  *    and/or other materials provided with the distribution.\r
19  *\r
20  * 3. The name of Atmel may not be used to endorse or promote products derived\r
21  *    from this software without specific prior written permission.\r
22  *\r
23  * 4. This software may only be redistributed and used in connection with an\r
24  *    Atmel microcontroller product.\r
25  *\r
26  * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED\r
27  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
29  * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR\r
30  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
34  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
35  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
36  * POSSIBILITY OF SUCH DAMAGE.\r
37  *\r
38  * \asf_license_stop\r
39  *\r
40  */\r
41 #ifndef _GPIO_H_\r
42 #define _GPIO_H_\r
43 \r
44 #include <parts.h>\r
45 \r
46 #if ( SAM3S || SAM3U || SAM3N || SAM3XA || SAM4S )\r
47 # include "sam_ioport/sam_gpio.h"\r
48 #elif XMEGA\r
49 # include "xmega_ioport/xmega_gpio.h"\r
50 #else\r
51 # error Unsupported chip type\r
52 #endif\r
53 \r
54 \r
55 /**\r
56  * \defgroup gpio_group General Purpose Input/Output\r
57  *\r
58  * This is the common API for GPIO. Additional features are available\r
59  * in the documentation of the specific modules.\r
60  *\r
61  * \section io_group_platform Platform Dependencies\r
62  *\r
63  * The following functions are available on all platforms, but there may\r
64  * be variations in the function signature (i.e. parameters) and\r
65  * behaviour. These functions are typically called by platform-specific\r
66  * parts of drivers, and applications that aren't intended to be\r
67  * portable:\r
68  *   - gpio_pin_is_low()\r
69  *   - gpio_pin_is_high()\r
70  *   - gpio_set_pin_high()\r
71  *   - gpio_set_pin_group_high()\r
72  *   - gpio_set_pin_low()\r
73  *   - gpio_set_pin_group_low()\r
74  *   - gpio_toggle_pin()\r
75  *   - gpio_toggle_pin_group()\r
76  *   - gpio_configure_pin()\r
77  *   - gpio_configure_group()\r
78  */\r
79 \r
80 #endif  // _GPIO_H_\r