![]() |
no-OS
|
Button handling definitions and declarations. More...
#include "no_os_gpio.h"Macros | |
| #define | ADC_POWER_STABILIZE_MS 100 |
| #define | ADC_5V_STABILIZE_MS 50 |
Functions | |
| int | buttons_init (void) |
| Initialize interrupt-based button handling. | |
| int | buttons_read (void) |
| Read button states using interrupt flags. | |
| void | configure_gpios_upon_startup (void) |
| Configure GPIOs upon system startup. | |
| int | configure_gpios_upon_shutdown () |
| Configure GPIOs upon system shutdown. | |
Button handling definitions and declarations.
Copyright 2025(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
| #define ADC_5V_STABILIZE_MS 50 |
| #define ADC_POWER_STABILIZE_MS 100 |
| int buttons_init | ( | void | ) |
Initialize interrupt-based button handling.
Configures GPIO pins 0.16, 0.17, and 0.18 as input pins with pull-up resistors for button functionality and sets up GPIO interrupt handlers for falling edge detection. Uses the Maxim GPIO IRQ interface (max_gpio_irq_ops) for proper interrupt support on the Maxim platform. Also enables the GPIO interrupt controller at the NVIC level for proper interrupt handling.
Initialize interrupt-based button handling.
Configures GPIO pins 0.16, 0.17, and 0.18 as input pins with pull-up resistors for button functionality (NEXT, BACK, ENTER).
| int buttons_read | ( | void | ) |
Read button states using interrupt flags.
Checks for button press events detected by GPIO interrupt handlers. This function clears the interrupt flag when a button press is detected. Call this function regularly to check for button presses.
Read button states using interrupt flags.
Reads the current state of all buttons and applies debouncing logic to prevent false triggers from mechanical switch bounce.
| int configure_gpios_upon_shutdown | ( | ) |
Configure GPIOs upon system shutdown.
Safely powers down the system by disabling power rails and setting control signals to their safe states. Finally, triggers a system reset.
| void configure_gpios_upon_startup | ( | void | ) |
Configure GPIOs upon system startup.
Sets up necessary GPIO pins for system operation, including enabling power rails and setting initial states for control signals.