This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Help with compiling in codewright

Hi All

I'm trying to integrate uVision so that it compiles code written in codewright. I have set up the following command line in codewright to use the compiler

c:\keil\c166\bin\c166.exe %r%e

it returns messages saying invalid base address and unidentified identifier in the following file REGST10F269.

I'm fairly new to this and would appreciate any help.

Thanks in advance
Matthew

Parents
  • %r is a Codewright macro which returns the name of the working file (the one in your edit window). %e delivers the extension of this file. This results in a filename without any path information. %b%e gives you the complete name including the path. Maybe this works better. The name you listed does not show any extension. Is none specified ? How do you make sure that the compiler finds include files which are referencend in your source file ?

    HHK

Reply
  • %r is a Codewright macro which returns the name of the working file (the one in your edit window). %e delivers the extension of this file. This results in a filename without any path information. %b%e gives you the complete name including the path. Maybe this works better. The name you listed does not show any extension. Is none specified ? How do you make sure that the compiler finds include files which are referencend in your source file ?

    HHK

Children