25 lines
245 B
C
Executable File
25 lines
245 B
C
Executable File
/*
|
|
* app2.c
|
|
*
|
|
* Created on: 2023年4月7日
|
|
* Author: NVT02970
|
|
*/
|
|
|
|
#include <io/gpio.h>
|
|
#include <UIWnd/UIFlow.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
gpio_direction_input(C_GPIO(10));
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|