Skip to content

Commit e6bac55

Browse files
committed
led: fix task stack overflow
1 parent 982786d commit e6bac55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/user/led.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ void led_set_mode(uint8_t idx)
7474
#ifdef CONFIG_ENABLE_LED
7575
void led_init(void)
7676
{
77-
xTaskCreatePinnedToCore(led_task, "LedT", 1024, NULL, 9, NULL, 1);
77+
xTaskCreatePinnedToCore(led_task, "LedT", 1280, NULL, 9, NULL, 1);
7878
}
7979
#endif

0 commit comments

Comments
 (0)