Skip to content

Commit 89dfbc5

Browse files
committed
fix(spi): add missing spi_bridge header
1 parent 91fb797 commit 89dfbc5

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

firmware_c5/components/Service/spi_bridge/bt_dispatcher.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
#include "ble_connect_flood.h"
66
#include "skimmer_detector.h"
77
#include "tracker_detector.h"
8+
#include "spi_bridge.h"
89
#include "esp_log.h"
910
#include <string.h>
1011

11-
static const char *TAG = "BT_DISPATCHER";
12-
1312
spi_status_t bt_dispatcher_execute(spi_id_t id, const uint8_t *payload, uint8_t len,
1413
uint8_t *out_resp_payload, uint8_t *out_resp_len) {
1514
*out_resp_len = 0;
@@ -67,4 +66,4 @@ spi_status_t bt_dispatcher_execute(spi_id_t id, const uint8_t *payload, uint8_t
6766
default:
6867
return SPI_STATUS_ERROR;
6968
}
70-
}
69+
}

0 commit comments

Comments
 (0)