OVMS3-idf/examples/bluetooth/a2dp_sink/main/demo_main.c
2017-03-17 21:31:59 +08:00

30 lines
650 B
C
Executable file

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "bt.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "nvs_flash.h"
#include "esp_system.h"
// #include "EspAudio.h"
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()
{
nvs_flash_init();
// system_init();
// printf("Free memory: %d bytes\n", system_get_free_heap_size());
// EspAudio_Init();
esp_bt_controller_init();
if (esp_bt_controller_enable(ESP_BT_MODE_BTDM) != ESP_OK) {
return;
}
bt_app_task_start_up();
}