This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Wireless Sensor Monitor Demo will not Make

Hello,

I'm trying to run the Temperature Sensor Demo on the eZ430-RF2500.  When I try to 'Make' the project I get the following error:

Error[Pe147]: declaration is incompatible with "__cc_version2int__low_level_init(void)" (declared at line97 of "C:\Program Files\IAR Systems\Embedded Workbench 6.0 Kickstart\430\inc\intrinsics.h")

And the following warning:

Warning[Ta031]: When defining __low_level_init the header file 'intrinsics.h' should have been included

while making bsp.c.  I tried adding an #include statement to that file but that did not help.

I'm running IAR Workbench 6.0 because all of the computer I have access to have been updated to Windows 7.  

Can anyone help me get the demo running?

Thanks in advance,

Angela

  • It appears the low_level_init function has changed its interface/identifier from the version of IAR you are using.  Search the source for the __low_level_init function and change its name to the __cc_version2int__low_level_init and see if that helps any.

    The low_level_init funciton halts the watchdog timer, sets up the vcore appropriately and also the clock.  This function is actually called before setting up the C environment to allow critical operations to be accomplished early in the boot sequence.

    you may need to fidget with the declarations a bit to get things working properly.

    Jim Noxon