]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_M4_ATSAM4S_Atmel_Studio/src/asf/common/services/gpio/sam_ioport/sam_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 / sam_ioport / sam_gpio.h
1 /**\r
2  * \file\r
3  *\r
4  * \brief GPIO service for SAM.\r
5  *\r
6  * Copyright (c) 2011 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 \r
42 #ifndef SAM_GPIO_H_INCLUDED\r
43 #define SAM_GPIO_H_INCLUDED\r
44 \r
45 #include "compiler.h"\r
46 #include "pio.h"\r
47 \r
48 #define gpio_pin_is_low(io_id) \\r
49         (pio_get_pin_value(io_id) ? 0 : 1)\r
50 \r
51 #define gpio_pin_is_high(io_id) \\r
52         (pio_get_pin_value(io_id) ? 1 : 0)\r
53 \r
54 #define gpio_set_pin_high(io_id) \\r
55         pio_set_pin_high(io_id)\r
56 \r
57 #define gpio_set_pin_low(io_id) \\r
58         pio_set_pin_low(io_id)\r
59 \r
60 #define gpio_toggle_pin(io_id) \\r
61         pio_toggle_pin(io_id)\r
62 \r
63 #define gpio_configure_pin(io_id,io_flags) \\r
64         pio_configure_pin(io_id,io_flags)\r
65 \r
66 #define gpio_configure_group(port_id,port_mask,io_flags) \\r
67         pio_configure_pin_group(port_id,port_mask,io_flags)\r
68 \r
69 #define gpio_set_pin_group_high(port_id,mask) \\r
70         pio_set_pin_group_high(port_id,mask)\r
71 \r
72 #define gpio_set_pin_group_low(port_id,mask) \\r
73         pio_set_pin_group_low(port_id,mask)\r
74 \r
75 #define gpio_toggle_pin_group(port_id,mask) \\r
76         pio_toggle_pin_group(port_id,mask)\r
77 \r
78 #endif /* SAM_GPIO_H_INCLUDED */\r