Gaurav-Aggarwal-AWS wrote on July 05, 2018:
+xQueueGenericReceive+ was an internal function which used to be there till FreeRTOS Version 9 and was removed in FreeRTOS Version 10.
https://sourceforge.net/p/freertos/code/HEAD/tree/tags/V9.0.0rc2/FreeRTOS/Source/queue.c
https://sourceforge.net/p/freertos/code/HEAD/tree/tags/V10.0.0/FreeRTOS/Source/queue.c
You seem to be using a library which was compiled with an older version of FreeRTOS. Please try to replace it with a version compiled with the latest version of FreeRTOS.
In general, you should make sure that if you are using any pre-compiled libraries, they are compiled with the same version of FreeRTOS as the one you are using.
Hope that helps.
Thanks.