mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
29 lines
576 B
C
29 lines
576 B
C
/*****************************************************************************
|
|
*
|
|
* File Name : main.c
|
|
*
|
|
* Description: main
|
|
*
|
|
* Copyright (c) 2014 Winner Micro Electronic Design Co., Ltd.
|
|
* All rights reserved.
|
|
*
|
|
* Author : dave
|
|
*
|
|
* Date : 2014-6-14
|
|
*****************************************************************************/
|
|
#include "wm_include.h"
|
|
#include "pikaScript.h"
|
|
void UserMain(void)
|
|
{
|
|
printf("[info]: w801 system init ok.\r\n");
|
|
PikaObj *pikaMain = pikaScriptInit();
|
|
while(1){
|
|
}
|
|
|
|
#if DEMO_CONSOLE
|
|
CreateDemoTask();
|
|
#endif
|
|
//用户自己的task
|
|
}
|
|
|