fix the floder name bug

This commit is contained in:
mculover666
2019-09-21 21:19:15 +08:00
parent ea3a97b152
commit ccdefc11ec
44 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#include "tos.h"
#include "mcu_init.h"
#if TOS_CFG_PWR_MGR_EN > 0u
static int pm_device_uart_init(void)
{
return 0;
}
static int pm_device_uart_suspend(void)
{
return 0;
}
static int pm_device_uart_resume(void)
{
SystemClock_Config();
return 0;
}
k_pm_device_t pm_device_uart = {
.name = "uart",
.init = pm_device_uart_init,
.suspend = pm_device_uart_suspend,
.resume = pm_device_uart_resume,
};
#endif