2016-11-04 07:08:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2016-11-16 14:00:18 +00:00
|
|
|
#include <string.h>
|
2016-11-04 07:08:30 +00:00
|
|
|
#include "bt.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
|
2016-11-16 14:00:18 +00:00
|
|
|
#include "nvs_flash.h"
|
|
|
|
#include "esp_system.h"
|
2016-11-04 07:08:30 +00:00
|
|
|
|
|
|
|
extern void bte_main_boot_entry(void *);
|
|
|
|
extern void bt_app_task_start_up(void);
|
|
|
|
extern void bt_app_core_start(void);
|
|
|
|
|
|
|
|
void app_main()
|
|
|
|
{
|
2016-11-16 14:00:18 +00:00
|
|
|
nvs_flash_init();
|
|
|
|
system_init();
|
|
|
|
printf("Free memory: %d bytes\n", system_get_free_heap_size());
|
2016-11-04 07:08:30 +00:00
|
|
|
bt_controller_init();
|
|
|
|
bt_app_task_start_up();
|
|
|
|
// bte_main_boot_entry(bt_app_core_start);
|
|
|
|
}
|