22 lines
365 B
C
22 lines
365 B
C
/*
|
|
* Copyright (c) 2023, mr-library Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2023-04-27 MacRsh first version
|
|
*/
|
|
|
|
#ifndef _DRV_GPIO_H_
|
|
#define _DRV_GPIO_H_
|
|
|
|
#include "device/pin/pin.h"
|
|
|
|
#if (MR_CONF_DEVICE_PIN == MR_CONF_ENABLE)
|
|
|
|
mr_err_t mr_hw_gpio_init(void);
|
|
|
|
#endif
|
|
|
|
#endif |