nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
gpio_pins.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019-2021 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef _GPIO_PINS_H_
8#define _GPIO_PINS_H_
9
10#include <stdbool.h>
11#include <stdint.h>
12
13struct gpio_pin {
14 uint8_t port;
15 uint8_t pin;
17};
18
19#endif /* _GPIO_PINS_H_ */
uint8_t port
Definition: gpio_pins.h:14
uint8_t pin
Definition: gpio_pins.h:15
bool wakeup_blocked
Definition: gpio_pins.h:16
Definition: gpio_pins.h:13