component/bt : advertising no random address

1. advertising with public bdaddr
2. increase queue size avoid for exception because of the log is a lot
This commit is contained in:
Tian Hao
2016-10-10 19:21:12 +08:00
parent eb8cb8d22e
commit e32d4e546a
3 changed files with 7 additions and 7 deletions

View File

@@ -347,7 +347,7 @@ void btu_task_post(void)
void btu_task_start_up(void) {
// ke_event_callback_set(KE_EVENT_BTU_TASK_THREAD, &btu_task_thread_handler);
xBtuQueue = xQueueCreate(15, sizeof(void *));
xBtuQueue = xQueueCreate(30, sizeof(void *));
xTaskCreate(btu_task_thread_handler, "BtuT", 8192, NULL, configMAX_PRIORITIES - 1, &xBtuTaskHandle);
#if (defined(BTA_INCLUDED) && BTA_INCLUDED == TRUE)