Skip to content

Commit

Permalink
[esp32] reduce default event queue size (#7217)
Browse files Browse the repository at this point in the history
The event queue is way too large by default, occupying 6.4 KB.
This PR reduces its size to optimize heap usage on esp32.
  • Loading branch information
gjc13 authored and pull[bot] committed Jul 7, 2021
1 parent 0ae7638 commit 1083084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/esp32/components/chip/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ menu "CHIP Device Layer"
config MAX_EVENT_QUEUE_SIZE
int "Max Event Queue Size"
range 0 65535
default 100
default 25
help
The maximum number of events that can be held in the CHIP Platform event queue.

Expand Down

0 comments on commit 1083084

Please sign in to comment.