Correction to compile without Bluetooth serial port

pull/39/head
Pawel Jalocha 2021-05-07 21:47:41 +01:00
rodzic c6f4f5204d
commit 88ea6f851b
2 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -2,10 +2,10 @@
// ~/esp-idf/components/bt/bluedroid/api/include/esp_spp_api.h
// esp_err_t esp_spp_write(uint32_t handle, int len, uint8_t *p_data);
// #ifdef WITH_BT_SPP
#include "hal.h"
#ifdef WITH_BT_SPP
#include "esp_bt.h"
#include "esp_bt_main.h"
#include "esp_gap_bt_api.h"
@ -19,7 +19,7 @@ static const esp_spp_mode_t esp_spp_mode = ESP_SPP_MODE_CB;
static const esp_spp_sec_t sec_mask = ESP_SPP_SEC_AUTHENTICATE;
static const esp_spp_role_t role_slave = ESP_SPP_ROLE_SLAVE;
static FIFO<char, 1024> BT_SPP_TxFIFO; // buffer for console output to be sent over BT
static FIFO<char, 1024> BT_SPP_TxFIFO; // buffer for console output to be sent over BT
static FIFO<uint8_t, 256> BT_SPP_RxFIFO; // buffer for BT data to be send to the console
static uint32_t BT_SPP_Conn = 0; // BT incoming connection handle
static uint32_t BT_SPP_TxCong = 0; // congestion control
@ -215,6 +215,6 @@ int BT_SPP_Init(void)
return Err; }
// #endif // WITH_BT_SPP
#endif // WITH_BT_SPP
// ========================================================================================================

Wyświetl plik

@ -11,10 +11,6 @@
#include "fifo.h"
#ifdef WITH_BT_SPP
#include "bt.h"
#endif
// ============================================================================================================
#define WITH_ESP32
@ -31,6 +27,10 @@
#include "config.h" // user options
#ifdef WITH_BT_SPP
#include "bt.h"
#endif
// ============================================================================================================
extern FIFO<uint8_t, 8> KeyBuffer;