NNDK2.3 RC7

Discussion to talk about software related topics only.
Post Reply
fanat9
Posts: 56
Joined: Thu Apr 24, 2008 4:23 pm
Location: Boston
Contact:

NNDK2.3 RC7

Post 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.
User avatar
lgitlitz
Posts: 331
Joined: Wed Apr 23, 2008 11:43 am
Location: San Diego, CA
Contact:

Re: NNDK2.3 RC7

Post 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
Post Reply