commponant bt:change bt_app_main to app_main

This commit is contained in:
yulong
2016-10-14 04:44:56 -04:00
parent af9b08d863
commit f68c8dd687
4 changed files with 11 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ static bool app_cpu_started = false;
static void do_global_ctors(void);
static void main_task(void* args);
extern void ets_setup_syscalls(void);
extern void bt_app_main(void);
extern void app_main(void);
extern int _bss_start;
extern int _bss_end;
@@ -166,7 +166,7 @@ static void do_global_ctors(void)
static void main_task(void* args)
{
bt_app_main();
app_main();
vTaskDelete(NULL);
}