Files
Embedded-Hacking/drivers/0x03_button_cbm/Src/rp2350_button.c
T
Kevin Thomas afdc1fa594 Add 0x03_button_cbm: bare-metal RP2350 button driver
- GPIO15 active-low button input with internal pull-up
- 20ms software debounce via busy-wait confirmation
- LED mirrors button state, UART reports edge transitions
- New gpio_config_input_pullup() in GPIO driver
- 1555B FLASH, 13 source files, zero warnings
2026-04-05 16:06:46 -04:00

53 lines
1.5 KiB
C

/**
******************************************************************************
* @file rp2350_button.c
* @author Kevin Thomas
* @brief Button input driver implementation for RP2350.
*
* Configures a GPIO pin as an active-low input with internal
* pull-up and provides debounced press detection using a
* busy-wait confirmation delay.
*
******************************************************************************
* @attention
*
* Copyright (c) 2026 Kevin Thomas.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
#include "rp2350_button.h"
#include "rp2350_gpio.h"
#include "rp2350_delay.h"
static uint32_t debounce_delay_ms = 20;
/**
* @brief Re-sample the pin after the debounce delay to confirm press.
* @param pin GPIO pin number to re-sample
* @retval bool true if the pin is still low after the debounce delay
*/
static bool _debounce_confirm(uint32_t pin)
{
delay_ms(debounce_delay_ms);
return !gpio_get(pin);
}
void button_init(uint32_t pin, uint32_t debounce_ms)
{
debounce_delay_ms = debounce_ms;
gpio_config_input_pullup(pin);
}
bool button_is_pressed(uint32_t pin)
{
if (!gpio_get(pin))
return _debounce_confirm(pin);
return false;
}