Hello,
I am working with EK-LM4F232, I am trying to build a project that use "usblib.h" but there is an error inside this file called " #35 #error Unrecognized COMPILER!". This is the usblib.h code part that present the error
#if defined(ccs) || \
defined(codered) || \
defined(gcc) || \
defined(rvmdk) || \
defined(__ARMCC_VERSION) || \
defined(sourcerygxx)
#define PACKED __attribute__ ((packed))
#elif defined(ewarm)
#define PACKED
#else
#error Unrecognized COMPILER! //************************************************************/// this is the error show in in problem window.
#endif
please help..