]> granicus.if.org Git - esp-idf/commit
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)
commit38303052f3dcb9d72bac3119f8ff38e8bb722b96
treebe525f787aace32e6ee67d72651f65f9b032472d
parent0b75ff5a6d43c5039afafd827ae84193b3f79d00
parent180f4d092917183fb27508f1ca7fb1eabf1b7d23
Merge branch 'bugfix/freertos_staticqueue_size' into 'master'

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