Skip to content

Commit

Permalink
Merge branch 'fix/build_esp-idf_33601' into 'feature/esp_as_mcu_host'
Browse files Browse the repository at this point in the history
fix(idf) : Fix CI under esp-idf!33601 for endian.h

See merge request app-frameworks/esp_hosted!515
  • Loading branch information
mantriyogesh committed Sep 26, 2024
2 parents 555322a + 2e339a4 commit 19d4cde
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions host/drivers/transport/sdio/sdio_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "esp_log.h"
#include "esp_hosted_log.h"
#include "hci_drv.h"
#include "endian.h"

static const char TAG[] = "H_SDIO_DRV";

Expand Down
1 change: 1 addition & 0 deletions host/drivers/transport/spi/spi_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "esp_hosted_log.h"
#include "stats.h"
#include "hci_drv.h"
#include "endian.h"

DEFINE_LOG_TAG(spi);

Expand Down
1 change: 1 addition & 0 deletions host/drivers/transport/spi_hd/spi_hd_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include "drivers/bt/hci_drv.h"

#include "endian.h"
#include "adapter.h"
#include "stats.h"
#include "transport_drv.h"
Expand Down
3 changes: 0 additions & 3 deletions host/utils/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ extern "C" {

#define MAX_SUPPORTED_SDIO_CLOCK_MHZ 40

#define htole16(x) ((uint16_t)(x))
#define le16toh(x) ((uint16_t)(x))

#define IP_ADDR_LEN 4
#define MAC_LEN 6
#define MIN_MAC_STRING_LEN 17
Expand Down
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.0.15"
version: "0.0.16"
description: ESP-Hosted provides driver such that any host can re-use ESP chipset as Wi-Fi or Bluetooth co-processor.
url: https://github.com/espressif/esp-hosted/tree/feature/esp_as_mcu_host
examples:
Expand Down

0 comments on commit 19d4cde

Please sign in to comment.