mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
examples/bluetooth: Fix incompatible cast
This commit is contained in:
committed by
Ivan Grokhotkov
parent
c3123b00ae
commit
6af721e8e4
@@ -67,8 +67,11 @@ static void spp_read_handle(void * param)
|
|||||||
spp_wr_task_shut_down();
|
spp_wr_task_shut_down();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
static void esp_spp_cb(uint16_t e, void *p)
|
||||||
{
|
{
|
||||||
|
esp_spp_cb_event_t event = e;
|
||||||
|
esp_spp_cb_param_t *param = p;
|
||||||
|
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case ESP_SPP_INIT_EVT:
|
case ESP_SPP_INIT_EVT:
|
||||||
ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_EVT");
|
ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_EVT");
|
||||||
@@ -102,7 +105,7 @@ static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
|||||||
|
|
||||||
static void esp_spp_stack_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
static void esp_spp_stack_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
||||||
{
|
{
|
||||||
spp_task_work_dispatch((spp_task_cb_t)esp_spp_cb, event, param, sizeof(esp_spp_cb_param_t), NULL);
|
spp_task_work_dispatch(esp_spp_cb, event, param, sizeof(esp_spp_cb_param_t), NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param)
|
void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param)
|
||||||
|
@@ -105,8 +105,11 @@ static bool get_name_from_eir(uint8_t *eir, char *bdname, uint8_t *bdname_len)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
static void esp_spp_cb(uint16_t e, void *p)
|
||||||
{
|
{
|
||||||
|
esp_spp_cb_event_t event = e;
|
||||||
|
esp_spp_cb_param_t *param = p;
|
||||||
|
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case ESP_SPP_INIT_EVT:
|
case ESP_SPP_INIT_EVT:
|
||||||
ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_EVT");
|
ESP_LOGI(SPP_TAG, "ESP_SPP_INIT_EVT");
|
||||||
@@ -198,7 +201,7 @@ static void esp_bt_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *pa
|
|||||||
|
|
||||||
static void esp_spp_stack_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
static void esp_spp_stack_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
||||||
{
|
{
|
||||||
spp_task_work_dispatch((spp_task_cb_t)esp_spp_cb, event, param, sizeof(esp_spp_cb_param_t), NULL);
|
spp_task_work_dispatch(esp_spp_cb, event, param, sizeof(esp_spp_cb_param_t), NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void app_main()
|
void app_main()
|
||||||
|
Reference in New Issue
Block a user