You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
/*
|
|
* Copyright : (C) 2023 Phytium Information Technology, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
|
|
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
|
|
* either version 1.0 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the Phytium Public License for more details.
|
|
*
|
|
*
|
|
* FilePath: pin_gpio_low_level_example.h
|
|
* Date: 2022-03-01 17:55:49
|
|
* LastEditTime: 2022-03-05 13:36:11
|
|
* Description: This file is for gpio register operation function definition.
|
|
* Modify History:
|
|
* Ver Who Date Changes
|
|
* ----- ------- -------- --------------------------------------
|
|
* 1.0 liqiaozhong 2023/03/05 first commit
|
|
*/
|
|
|
|
#ifndef PIN_GPIO_LOW_LEVEL_EXAMPLE_H
|
|
#define PIN_GPIO_LOW_LEVEL_EXAMPLE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
/***************************** Include Files *********************************/
|
|
#include "ftypes.h"
|
|
#include "fkernel.h"
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
int FPinGpioLowLevelExample(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|