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.
37 lines
1.1 KiB
37 lines
1.1 KiB
/*
|
|
* @Copyright : (C) 2022 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: fboard_init.c
|
|
* @Date: 2023-07-24 09:50:35
|
|
* @LastEditTime: 2023-07-24 09:50:35
|
|
* @Description: This file is for io and status init
|
|
*
|
|
* @Modify History:
|
|
* Ver Who Date Changes
|
|
* ----- ------ -------- --------------------------------------
|
|
* 1.0 liusm 2023/07/24 first release
|
|
*/
|
|
#include "strto.h"
|
|
|
|
#include "fboard_port.h"
|
|
#include "fboard_init.h"
|
|
#include "fio_mux.h"
|
|
#include "fparameters.h"
|
|
|
|
int FBoardStatusInit(void *para)
|
|
{
|
|
FIOPadSetUartMux(FUART1_ID);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|