![]()
![]()
#define _HARDWARE_GPIO_H
![]()
![]()
#include "pico.h"
![]()
![]()
#include "hardware/structs/sio.h"
![]()
![]()
#include "hardware/structs/pads_bank0.h"
![]()
![]()
#include "hardware/structs/io_bank0.h"
![]()
![]()
#include "hardware/irq.h"
![]()
![]()
#define PICO_USE_GPIO_COPROCESSOR
![]()
![]()
#include "hardware/gpio_coproc.h"
![]()
![]()
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO
![]()
![]()
#define PARAM_ASSERTIONS_ENABLED_HARDWARE_GPIO
![]()
![]()
gpio_dir
![]()
![]()
GPIO_OUT
![]()
![]()
GPIO_IN
![]()
![]()
gpio_irq_level
![]()
![]()
GPIO_IRQ_LEVEL_LOW
![]()
![]()
GPIO_IRQ_LEVEL_HIGH
![]()
![]()
GPIO_IRQ_EDGE_FALL
![]()
![]()
GPIO_IRQ_EDGE_RISE
![]()
![]()
gpio_irq_callback_t
![]()
![]()
gpio_override
![]()
![]()
GPIO_OVERRIDE_NORMAL
![]()
![]()
GPIO_OVERRIDE_INVERT
![]()
![]()
GPIO_OVERRIDE_LOW
![]()
![]()
GPIO_OVERRIDE_HIGH
![]()
![]()
gpio_slew_rate
![]()
![]()
GPIO_SLEW_RATE_SLOW
![]()
![]()
GPIO_SLEW_RATE_FAST
![]()
![]()
gpio_drive_strength
![]()
![]()
GPIO_DRIVE_STRENGTH_2MA
![]()
![]()
GPIO_DRIVE_STRENGTH_4MA
![]()
![]()
GPIO_DRIVE_STRENGTH_8MA
![]()
![]()
GPIO_DRIVE_STRENGTH_12MA
![]()
![]()
check_gpio_param(uint)
![]()
![]()
gpio_set_function(uint, gpio_function_t);
![]()
![]()
gpio_set_function_masked(uint32_t, gpio_function_t);
![]()
![]()
gpio_set_function_masked64(uint64_t, gpio_function_t);
![]()
![]()
gpio_get_function(uint);
![]()
![]()
gpio_set_pulls(uint, bool, bool);
![]()
![]()
gpio_pull_up(uint)
![]()
![]()
gpio_is_pulled_up(uint)
![]()
![]()
gpio_pull_down(uint)
![]()
![]()
gpio_is_pulled_down(uint)
![]()
![]()
gpio_disable_pulls(uint)
![]()
![]()
gpio_set_irqover(uint, uint);
![]()
![]()
gpio_set_outover(uint, uint);
![]()
![]()
gpio_set_inover(uint, uint);
![]()
![]()
gpio_set_oeover(uint, uint);
![]()
![]()
gpio_set_input_enabled(uint, bool);
![]()
![]()
gpio_set_input_hysteresis_enabled(uint, bool);
![]()
![]()
gpio_is_input_hysteresis_enabled(uint);
![]()
![]()
gpio_set_slew_rate(uint, enum gpio_slew_rate);
![]()
![]()
gpio_get_slew_rate(uint);
![]()
![]()
gpio_set_drive_strength(uint, enum gpio_drive_strength);
![]()
![]()
gpio_get_drive_strength(uint);
![]()
![]()
gpio_set_irq_enabled(uint, uint32_t, bool);
![]()
![]()
#define GPIO_IRQ_CALLBACK_ORDER_PRIORITY
![]()
![]()
#define GPIO_RAW_IRQ_HANDLER_DEFAULT_ORDER_PRIORITY
![]()
![]()
gpio_set_irq_callback(gpio_irq_callback_t);
![]()
![]()
gpio_set_irq_enabled_with_callback(uint, uint32_t, bool, gpio_irq_callback_t);
![]()
![]()
gpio_set_dormant_irq_enabled(uint, uint32_t, bool);
![]()
![]()
gpio_get_irq_event_mask(uint)
![]()
![]()
gpio_acknowledge_irq(uint, uint32_t);
![]()
![]()
gpio_add_raw_irq_handler_with_order_priority_masked(uint32_t, irq_handler_t, uint8_t);
![]()
![]()
gpio_add_raw_irq_handler_with_order_priority_masked64(uint64_t, irq_handler_t, uint8_t);
![]()
![]()
gpio_add_raw_irq_handler_with_order_priority(uint, irq_handler_t, uint8_t)
![]()
![]()
gpio_add_raw_irq_handler_masked(uint32_t, irq_handler_t);
![]()
![]()
gpio_add_raw_irq_handler_masked64(uint64_t, irq_handler_t);
![]()
![]()
gpio_add_raw_irq_handler(uint, irq_handler_t)
![]()
![]()
gpio_remove_raw_irq_handler_masked(uint32_t, irq_handler_t);
![]()
![]()
gpio_remove_raw_irq_handler_masked64(uint64_t, irq_handler_t);
![]()
![]()
gpio_remove_raw_irq_handler(uint, irq_handler_t)
![]()
![]()
gpio_init(uint);
![]()
![]()
gpio_deinit(uint);
![]()
![]()
gpio_init_mask(uint);
![]()
![]()
gpio_get(uint)
![]()
![]()
if
(gpio < 32)
![]()
![]()
else
![]()
![]()
gpio_get_all()
![]()
![]()
gpio_get_all64()
![]()
![]()
gpio_set_mask(uint32_t)
![]()
![]()
gpio_set_mask64(uint64_t)
![]()
![]()
gpio_set_mask_n(uint, uint32_t)
![]()
![]()
if
(!n)
![]()
![]()
else if
(n == 1)
![]()
![]()
gpio_clr_mask(uint32_t)
![]()
![]()
gpio_clr_mask64(uint64_t)
![]()
![]()
gpio_clr_mask_n(uint, uint32_t)
![]()
![]()
if
(!n)
![]()
![]()
else if
(n == 1)
![]()
![]()
gpio_xor_mask(uint32_t)
![]()
![]()
gpio_xor_mask64(uint64_t)
![]()
![]()
gpio_xor_mask_n(uint, uint32_t)
![]()
![]()
if
(!n)
![]()
![]()
else if
(n == 1)
![]()
![]()
gpio_put_masked(uint32_t, uint32_t)
![]()
![]()
gpio_put_masked64(uint64_t, uint64_t)
![]()
![]()
gpio_put_masked_n(uint, uint32_t, uint32_t)
![]()
![]()
if
(!n)
![]()
![]()
else if
(n == 1)
![]()
![]()
gpio_put_all(uint32_t)
![]()
![]()
gpio_put_all64(uint64_t)
![]()
![]()
gpio_put(uint, bool)
![]()
![]()
if
(gpio < 32)
![]()
![]()
if
(value)
![]()
![]()
else
![]()
![]()
else
![]()
![]()
if
(value)
![]()
![]()
else
![]()
![]()
gpio_get_out_level(uint)
![]()
![]()
gpio_set_dir_out_masked(uint32_t)
![]()
![]()
gpio_set_dir_out_masked64(uint64_t)
![]()
![]()
gpio_set_dir_in_masked(uint32_t)
![]()
![]()
gpio_set_dir_in_masked64(uint64_t)
![]()
![]()
gpio_set_dir_masked(uint32_t, uint32_t)
![]()
![]()
gpio_set_dir_masked64(uint64_t, uint64_t)
![]()
![]()
gpio_set_dir_all_bits(uint32_t)
![]()
![]()
gpio_set_dir_all_bits64(uint64_t)
![]()
![]()
gpio_set_dir(uint, bool)
![]()
![]()
if
(gpio < 32)
![]()
![]()
if
(out)
![]()
![]()
else
![]()
![]()
else
![]()
![]()
if
(out)
![]()
![]()
else
![]()
![]()
gpio_is_dir_out(uint)
![]()
![]()
gpio_get_dir(uint)
![]()
![]()
gpio_debug_pins_init();
![]()
![]()
#define PICO_DEBUG_PIN_BASE
![]()
![]()
#define PICO_DEBUG_PIN_COUNT
![]()
![]()
#define CU_REGISTER_DEBUG_PINS
![]()
![]()
#define CU_SELECT_DEBUG_PINS
![]()
![]()
#define DEBUG_PINS_ENABLED
![]()
![]()
#define CU_SELECT_DEBUG_PINS
![]()
![]()
#define DEBUG_PINS_ENABLED
![]()
![]()
#define DEBUG_PINS_SET
![]()
![]()
#define DEBUG_PINS_CLR
![]()
![]()
#define DEBUG_PINS_XOR