Page 1 of 1

NNDK2.3 RC7

Posted: Wed Apr 01, 2009 5:46 pm
by fanat9
Trying to rebuild my projects with RC7 and found next error:
C:\Nburn\MOD5234\include/i2cmulti.h #error Multi_I2CInit declaration missing for defined platform
Apparently, Nburn\MOD5234\include\i2cmulti.h line 128 checking for MCF5234 defined, but not MOD5234.

Regards.

Re: NNDK2.3 RC7

Posted: Wed Apr 01, 2009 7:48 pm
by lgitlitz
Processor definitions were added to replace some of the platform definitions in this build. A previous Eclipse project will not have these definitions. You can either make a new project or add the following to the top of your source file, before your #include with this error:
#ifndef MCF5234
#define MCF5234
#endif