Missing cplusplus escape code on FreeRTOS_CLI.h

linyola wrote on Thursday, February 27, 2014:

This problem is very simple. All the header files from the FreeRTOS are correctly escaped from cplusplus compilations, except the "FreeRTOS-Plus-CLI/FreeRTOS_CLI.h"

It’s missing on the start:

#ifdef __cplusplus
extern "C" {
#endif

and on the end:

#ifdef __cplusplus
}
#endif

This can mean a time wasted looking for the problem on a compilation.

rtel wrote on Thursday, February 27, 2014:

I will ensure this gets added into the main line, thanks.

Regards.