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

New update contain bug!

I just downloaded new C166 update v. 4.20. A bug is shown by generating SRC files. Where is the correction?

Parents Reply Children
  • I'm so sorry! I was mistaken. In my source file *.c is being realized interrupt handling. C-code contain assembler inserting. Interrupt handler is declared so:
    void Timer2Ih(void) interrupt T2IC = 0x22 using Timer2Ih_regs
    {
    ...
    __asm ...
    }
    I set options <Generate assembler SRC File> and <Assemble SRC File>. Then I build project and see message: "error A25: SYMBOL REDEFINITION". I decided that it is bug. But correctly is :
    void Timer2Ih(void) interrupt 0x22 using Timer2Ih_regs
    {
    ...
    __asm ...
    }
    I'm sorry.