Content originally posted in LPCWare by Ex-Zero on Mon Dec 19 07:22:41 MST 2011
Quote: daniel
But I'm not really familiar with the LPCXpresso development tool.
:confused:
You're not familiar with C :eek:
Look in you timer.h and timer.c files, there are a lot #ifs like
#if CONFIG_ENABLE_DRIVER_TIMER32==1
If this blocks are grayed out, they are not used because this define isn't 1 :eek:
So just add:
#define CONFIG_ENABLE_DRIVER_TIMER32 1
to your driver_config.h :)