Skip to content

Commit

Permalink
fix(bt/bluedroid): fix loadprohibited error in spp vfs acceptor example
Browse files Browse the repository at this point in the history
  • Loading branch information
ESP-YTGerd committed Nov 2, 2023
1 parent 2a96eb9 commit 70aedc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void spp_task_task_shut_down(void)

void spp_wr_task_start_up(spp_wr_task_cb_t p_cback, int fd)
{
xTaskCreate(p_cback, "write_read", 2048, (void *)fd, 5, NULL);
xTaskCreate(p_cback, "write_read", 4096, (void *)fd, 5, NULL);
}
void spp_wr_task_shut_down(void)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void spp_task_task_shut_down(void)

void spp_wr_task_start_up(spp_wr_task_cb_t p_cback, int fd)
{
xTaskCreate(p_cback, "write_read", 2048, (void *)fd, 5, NULL);
xTaskCreate(p_cback, "write_read", 4096, (void *)fd, 5, NULL);
}
void spp_wr_task_shut_down(void)
{
Expand Down

0 comments on commit 70aedc8

Please sign in to comment.