Skip to content

Commit 19d4cde

Browse files
committed
Merge branch 'fix/build_esp-idf_33601' into 'feature/esp_as_mcu_host'
fix(idf) : Fix CI under esp-idf!33601 for endian.h See merge request app-frameworks/esp_hosted!515
2 parents 555322a + 2e339a4 commit 19d4cde

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

host/drivers/transport/sdio/sdio_drv.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "esp_log.h"
2323
#include "esp_hosted_log.h"
2424
#include "hci_drv.h"
25+
#include "endian.h"
2526

2627
static const char TAG[] = "H_SDIO_DRV";
2728

host/drivers/transport/spi/spi_drv.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "esp_hosted_log.h"
2626
#include "stats.h"
2727
#include "hci_drv.h"
28+
#include "endian.h"
2829

2930
DEFINE_LOG_TAG(spi);
3031

host/drivers/transport/spi_hd/spi_hd_drv.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include "drivers/bt/hci_drv.h"
2121

22+
#include "endian.h"
2223
#include "adapter.h"
2324
#include "stats.h"
2425
#include "transport_drv.h"

host/utils/common.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ extern "C" {
4242

4343
#define MAX_SUPPORTED_SDIO_CLOCK_MHZ 40
4444

45-
#define htole16(x) ((uint16_t)(x))
46-
#define le16toh(x) ((uint16_t)(x))
47-
4845
#define IP_ADDR_LEN 4
4946
#define MAC_LEN 6
5047
#define MIN_MAC_STRING_LEN 17

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.0.15"
1+
version: "0.0.16"
22
description: ESP-Hosted provides driver such that any host can re-use ESP chipset as Wi-Fi or Bluetooth co-processor.
33
url: https://github.com/espressif/esp-hosted/tree/feature/esp_as_mcu_host
44
examples:

0 commit comments

Comments
 (0)