Skip to content

Commit 6b6d55c

Browse files
Merge branch 'fix/compile_issue' into 'master'
fix(lightbulb): Fixed a compilation issue on IDF 6.0 See merge request ae_group/esp-iot-solution!1312
2 parents e04698e + 52049b6 commit 6b6d55c

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

components/led/lightbulb_driver/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ChangeLog
22

3+
## v1.8.3 - 2025-06-19
4+
5+
### Bug Fix:
6+
7+
- Fixed a compilation issue on IDF 6.0
8+
39
## v1.8.2 - 2025-04-17
410

511
### Bug Fix:

components/led/lightbulb_driver/drivers/pwm/pwm.h

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

77
#pragma once
88
#include "esp_idf_version.h"
9+
#include "driver/gpio.h"
910

1011
#define PWM_RGB_CHANNEL_PHASE_DELAY_FLAG 0X01
1112
#define PWM_CW_CHANNEL_PHASE_DELAY_FLAG 0X02

components/led/lightbulb_driver/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.8.2"
1+
version: "1.8.3"
22
description: Provide multiple dimming driver solutions to easily build lightbulb applications
33
url: https://github.com/espressif/esp-iot-solution/tree/master/components/led/lightbulb_driver
44
dependencies:

components/led/lightbulb_driver/test_apps/sdkconfig.defaults

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
CONFIG_USE_GPTIMER_GENERATE_TICKS=n
33
CONFIG_ENABLE_LIGHTBULB_DEBUG=y
44

5+
# IDF unit test
6+
CONFIG_UNITY_FREERTOS_STACK_SIZE=10240
7+
CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192
8+
59
# Freertos
610
CONFIG_FREERTOS_HZ=1000
711

0 commit comments

Comments
 (0)