mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
23855e140e
Co-authored-by: Gunar Schorcht <gunar@schorcht.net> Co-authored-by: chrysn <chrysn@fsfe.org> Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
17 lines
409 B
C
17 lines
409 B
C
/*
|
|
* Copyright (C) 2021 Otto-von-Guericke-Universität Magdeburg
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
#include "periph/gpio_ll_irq.h"
|
|
#include <stdint.h>
|
|
|
|
__attribute__((weak))
|
|
void gpio_ll_irq_off(gpio_port_t port, uint8_t pin)
|
|
{
|
|
gpio_ll_irq_mask(port, pin);
|
|
}
|