]> granicus.if.org Git - esp-idf/commitdiff
Merge branch 'bugfix/freertos_staticqueue_size' into 'master'
authorIvan Grokhotkov <ivan@espressif.com>
Wed, 23 Nov 2016 04:04:53 +0000 (12:04 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Wed, 23 Nov 2016 04:04:53 +0000 (12:04 +0800)
StaticQueue_t needs to have the same size as xQUEUE.

https://github.com/espressif/esp-idf/pull/98

Without this change, building FreeRTOS with static allocation enabled succeeds, but trying to create a queue from a static buffer causes an assert because the size of static and dynamic queues differ.

See merge request !236


Trivial merge