Hi,
I'm using free MPLAB X IDE v2.35 with cocoOS_4.0.0 and getting below error, it has something to do with "args..."
include\os_event.h:64: error: (112) #define syntax error
include\os_applAPI.h:324: error: (112) #define syntax error
The file openned is as per below
===================================
in os_event.h
#define OS_WAIT_MULTIPLE_EVENTS( waitAll, args...) do {
in os_applAPI.h
#define event_wait_multiple(waitAll, args...) OS_WAIT_MULTIPLE_EVENTS( waitAll, args)
===================================
I can get it to compile if I were to do
#define OS_WAIT_MULTIPLE_EVENTS( waitAll) do {
#define event_wait_multiple(waitAll) OS_WAIT_MULTIPLE_EVENTS( waitAll, args)
Below are the snapshot of my project file:
http://postimg.org/image/ueyrio03l/