hci_transport: remove packet type defines provided by bluetooth.h

This commit is contained in:
Matthias Ringwald 2019-12-02 15:03:20 +01:00
parent 6e084577f7
commit f1f3f303c6
2 changed files with 2 additions and 8 deletions

View File

@ -55,6 +55,7 @@
#include "hci_cmd.h"
#include "gap.h"
#include "hci_transport.h"
#include "btstack_run_loop.h"
#ifdef ENABLE_BLE
#include "ble/att_db.h"

View File

@ -49,19 +49,12 @@
#include <stdint.h>
#include "btstack_uart_block.h"
#include "btstack_em9304_spi.h"
#include "btstack_run_loop.h"
#include "btstack_defines.h"
#if defined __cplusplus
extern "C" {
#endif
/**
* packet types - used in BTstack and over the H4 UART interface
*/
#define HCI_COMMAND_DATA_PACKET 0x01
#define HCI_ACL_DATA_PACKET 0x02
#define HCI_SCO_DATA_PACKET 0x03
#define HCI_EVENT_PACKET 0x04
/* API_START */