Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/lib/bt/common/osi/osi.c

25 lines
349 B

/*
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "osi/osi.h"
#include "osi/mutex.h"
int osi_init(void)
{
int ret = 0;
if (osi_mutex_global_init() != 0) {
ret = -1;
}
return ret;
}
void osi_deinit(void)
{
osi_mutex_global_deinit();
}