mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
18 lines
452 B
C
18 lines
452 B
C
|
|
#include <stdio.h>
|
|
#include "example1.h"
|
|
#include "example2.h"
|
|
|
|
/******************************************************************************
|
|
* FunctionName : app_main
|
|
* Description : entry of user application, init user function here
|
|
* Parameters : none
|
|
* Returns : none
|
|
*******************************************************************************/
|
|
void app_main()
|
|
{
|
|
printf("in app code...\n");
|
|
example1();
|
|
example2();
|
|
}
|