| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "nvs.h"
- #include "nvs_flash.h"
- #include "esp_system.h"
- #include "esp_log.h"
- #include "bt.h"
- #include "bt_app_core.h"
- #include "bt_app_av.h"
- #include "esp_bt_main.h"
- #include "esp_bt_device.h"
- #include "esp_gap_bt_api.h"
- #include "esp_a2dp_api.h"
- #include "esp_avrc_api.h"
- /* event for handler "bt_av_hdl_stack_up */
- enum {
- BT_APP_EVT_STACK_UP = 0,
- };
- /* handler for bluetooth stack enabled events */
- static void bt_av_hdl_stack_evt(uint16_t event, void *p_param);
- void app_main()
- {
- nvs_flash_init();
- esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT();
- if (esp_bt_controller_init(&bt_cfg) != ESP_OK) {
- ESP_LOGE(BT_AV_TAG, "%s initialize controller failed\n", __func__);
- return;
- }
- if (esp_bt_controller_enable(ESP_BT_MODE_BTDM) != ESP_OK) {
- ESP_LOGE(BT_AV_TAG, "%s enable controller failed\n", __func__);
- return;
- }
- if (esp_bluedroid_init() != ESP_OK) {
- ESP_LOGE(BT_AV_TAG, "%s initialize bluedroid failed\n", __func__);
- return;
- }
- if (esp_bluedroid_enable() != ESP_OK) {
- ESP_LOGE(BT_AV_TAG, "%s enable bluedroid failed\n", __func__);
- return;
- }
- /* create application task */
- bt_app_task_start_up();
- /* Bluetooth device name, connection mode and profile set up */
- bt_app_work_dispatch(bt_av_hdl_stack_evt, BT_APP_EVT_STACK_UP, NULL, 0, NULL);
- }
- static void bt_av_hdl_stack_evt(uint16_t event, void *p_param)
- {
- ESP_LOGD(BT_AV_TAG, "%s evt %d", __func__, event);
- switch (event) {
- case BT_APP_EVT_STACK_UP: {
- /* set up device name */
- char *dev_name = "ESP_SPEAKER";
- esp_bt_dev_set_device_name(dev_name);
- /* initialize A2DP sink */
- esp_a2d_register_callback(&bt_app_a2d_cb);
- esp_a2d_register_data_callback(bt_app_a2d_data_cb);
- esp_a2d_sink_init();
- /* initialize AVRCP controller */
- esp_avrc_ct_init();
- esp_avrc_ct_register_callback(bt_app_rc_ct_cb);
- /* set discoverable and connectable mode, wait to be connected */
- esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
- break;
- }
- default:
- ESP_LOGE(BT_AV_TAG, "%s unhandled evt %d", __func__, event);
- break;
- }
- }
|