Skip to content

Commit a93734f

Browse files
authored
Merge pull request #613 from mythbuster5/fix/add_heap_dependency
fix: Add heap dependency to led_strip and essl_sdio (IEC-416)
2 parents 2021ee1 + 3a49da3 commit a93734f

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

esp_serial_slave_link/essl_sdio.c

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

1212
#include "essl_internal.h"
1313
#include "essl_sdio.h"
14+
#include "esp_heap_caps.h"
1415

1516
static const char TAG[] = "essl_sdio";
1617

esp_serial_slave_link/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.1.1~1"
1+
version: "1.1.2"
22
description: Espressif Serial Slave Link Library
33
url: https://github.com/espressif/idf-extra-components/tree/master/esp_serial_slave_link
44
repository: https://github.com/espressif/idf-extra-components.git

led_strip/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "3.0.1~1"
1+
version: "3.0.2"
22
description: Driver for Addressable LED Strip (WS2812, etc)
33
url: https://github.com/espressif/idf-extra-components/tree/master/led_strip
44
repository: https://github.com/espressif/idf-extra-components.git

led_strip/src/led_strip_spi_dev.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "soc/spi_periph.h"
1313
#include "led_strip.h"
1414
#include "led_strip_interface.h"
15+
#include "esp_heap_caps.h"
1516

1617
#define LED_STRIP_SPI_DEFAULT_RESOLUTION (2.5 * 1000 * 1000) // 2.5MHz resolution
1718
#define LED_STRIP_SPI_DEFAULT_TRANS_QUEUE_SIZE 4

0 commit comments

Comments
 (0)