1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 
5 #include "aos/init.h"
6 #include "board.h"
7 #include <aos/errno.h>
8 #include <aos/kernel.h>
9 #include <k_api.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 
application_start(int argc,char * argv[])13 int application_start(int argc, char *argv[])
14 {
15     int count = 0;
16 
17     printf("nano entry here!\r\n");
18 
19     while (1) {
20         printf("hello world! count %d \r\n", count++);
21         aos_msleep(10000);
22     };
23 }
24