mikroSDK Reference Manual
hal_gpio.h
Go to the documentation of this file.
1/****************************************************************************
2**
3** Copyright (C) 2024 MikroElektronika d.o.o.
4** Contact: https://www.mikroe.com/contact
5**
6** This file is part of the mikroSDK package
7**
8** Commercial License Usage
9**
10** Licensees holding valid commercial NECTO compilers AI licenses may use this
11** file in accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The MikroElektronika Company.
14** For licensing terms and conditions see
15** https://www.mikroe.com/legal/software-license-agreement.
16** For further information use the contact form at
17** https://www.mikroe.com/contact.
18**
19**
20** GNU Lesser General Public License Usage
21**
22** Alternatively, this file may be used for
23** non-commercial projects under the terms of the GNU Lesser
24** General Public License version 3 as published by the Free Software
25** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
26**
27** The above copyright notice and this permission notice shall be
28** included in all copies or substantial portions of the Software.
29**
30** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31** OF MERCHANTABILITY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
32** TO THE WARRANTIES FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
33** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
34** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
35** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
36** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37**
38****************************************************************************/
44#ifndef _HAL_GPIO_H_
45#define _HAL_GPIO_H_
46
47#ifdef __cplusplus
48extern "C"{
49#endif
50
51#include "hal_target.h"
52#include "hal_ll_gpio.h"
53
62
63typedef handle_t hal_gpio_base_t;
64typedef hal_ll_gpio_mask_t hal_gpio_mask_t;
80
132
151#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
152#define hal_gpio_read_pin_input(_handle) hal_ll_gpio_read_pin_input( (hal_ll_gpio_pin_t *)_handle )
153#else
155#endif
156
175#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
176#define hal_gpio_read_pin_output(_handle) hal_ll_gpio_read_pin_output( (hal_ll_gpio_pin_t *)_handle )
177#else
179#endif
180
199#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
200#define hal_gpio_write_pin_output(_handle,_value) hal_ll_gpio_write_pin_output( (hal_ll_gpio_pin_t *)_handle, _value )
201#else
202void hal_gpio_write_pin_output( hal_gpio_pin_t *pin, uint8_t value );
203#endif
204
222#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
223#define hal_gpio_toggle_pin_output(_handle) hal_ll_gpio_toggle_pin_output( (hal_ll_gpio_pin_t *)_handle )
224#else
226#endif
227
245#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
246#define hal_gpio_set_pin_output(_handle) hal_ll_gpio_set_pin_output( (hal_ll_gpio_pin_t *)_handle )
247#else
249#endif
250
268#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
269#define hal_gpio_clear_pin_output(_handle) hal_ll_gpio_clear_pin_output( (hal_ll_gpio_pin_t *)_handle )
270#else
272#endif
273
308
327#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
328#define hal_gpio_read_port_input(_handle) hal_ll_gpio_read_port_input( (hal_ll_gpio_port_t *)_handle )
329#else
331#endif
332
351#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
352#define hal_gpio_read_port_output(_handle) hal_ll_gpio_read_port_output( (hal_ll_gpio_port_t *)_handle )
353#else
355#endif
356
376#if defined(FLATTEN_ME) && (FLATTEN_ME_LEVEL >= FLATTEN_ME_LEVEL_MID)
377#define hal_gpio_write_port_output(_handle,_value) hal_ll_gpio_write_port_output( (hal_ll_gpio_port_t *)_handle, _value )
378#else
380#endif
381
382 // halgpiogroup
383 // halgroup
384 // pergroup
385
386#ifdef __cplusplus
387}
388#endif
389
390#endif // _HAL_GPIO_H_
391// ------------------------------------------------------------------------- END
void hal_gpio_write_pin_output(hal_gpio_pin_t *pin, uint8_t value)
Sets pin state.
void hal_gpio_set_pin_output(hal_gpio_pin_t *pin)
Set pin state high.
void hal_gpio_toggle_pin_output(hal_gpio_pin_t *pin)
Toggle pin state.
void hal_gpio_clear_pin_output(hal_gpio_pin_t *pin)
Set pin state low.
void hal_gpio_configure_pin(hal_gpio_pin_t *pin, hal_pin_name_t name, hal_gpio_direction_t direction)
Configure pin.
uint8_t hal_gpio_read_pin_input(hal_gpio_pin_t *pin)
Read pin.
hal_port_size_t hal_gpio_read_port_input(hal_gpio_port_t *port)
Read port.
void hal_gpio_configure_port(hal_gpio_port_t *port, hal_port_name_t name, hal_gpio_mask_t mask, hal_gpio_direction_t direction)
Configure port.
hal_port_size_t hal_gpio_read_port_output(hal_gpio_port_t *port)
Read port.
void hal_gpio_write_port_output(hal_gpio_port_t *port, hal_port_size_t value)
Sets port state.
uint8_t hal_gpio_read_pin_output(hal_gpio_pin_t *pin)
Read pin.
hal_gpio_t hal_gpio_pin_t
Definition hal_gpio.h:81
hal_gpio_direction_t
Definition hal_gpio.h:58
@ HAL_GPIO_DIGITAL_INPUT
Definition hal_gpio.h:59
@ HAL_GPIO_DIGITAL_OUTPUT
Definition hal_gpio.h:60
handle_t hal_gpio_base_t
Definition hal_gpio.h:63
hal_ll_gpio_mask_t hal_gpio_mask_t
Definition hal_gpio.h:64
hal_gpio_t hal_gpio_port_t
Definition hal_gpio.h:82
struct hal_gpio hal_gpio_t
GPIO HAL context structure, consisted of the following fields :
HAL target macros and typedefs.
hal_ll_port_size_t hal_port_size_t
Definition hal_target.h:62
hal_ll_port_name_t hal_port_name_t
Definition hal_target.h:61
hal_ll_pin_name_t hal_pin_name_t
Definition hal_target.h:60
GPIO HAL context structure, consisted of the following fields :
Definition hal_gpio.h:76
hal_gpio_base_t base
Definition hal_gpio.h:77
hal_gpio_mask_t mask
Definition hal_gpio.h:78