Porting Chipcon's CC2430 examples to KEIL's 51 environment

Hi!

I would like to use KEIL's C51 tools for Chipcons CC2430 instead of IAR's buggy IDE... What is the best way to port the Chipcons example files (from their website) writen for IAR's EW? Has someone allready done this and is there a downloadable conversion available?
Chipcon's IAR deal seems to limit their support in this issue...

Parents
  • Most compilers have a "Strict ANSI" option to disable all compiler-specific extensions.

    If IAR has this, try turning it on - this should identify all the uses of IAR-specific extensions.

    Then look up all those extensions in the IAR manuals.

    Then look in the Keil manuals to find the corresponding Keil implementations.

    Then make #define macros, typedef's, etc, to encapsulate all the compiler specifics

    As you make changes, ensure that the code continues to build & work with the IAR tools!

Reply
  • Most compilers have a "Strict ANSI" option to disable all compiler-specific extensions.

    If IAR has this, try turning it on - this should identify all the uses of IAR-specific extensions.

    Then look up all those extensions in the IAR manuals.

    Then look in the Keil manuals to find the corresponding Keil implementations.

    Then make #define macros, typedef's, etc, to encapsulate all the compiler specifics

    As you make changes, ensure that the code continues to build & work with the IAR tools!

Children
More questions in this forum