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

interrupt_ethernet - Reg

I am using MDK ARM Professional version v4.74 and MCB2300 evaluation board.How to use ethernet interrupt using static void interrupt_ethernet (void) __irq.I have enabled ethernet interrupt using VICIntEnable = 1 << 21;.how to receive ethernet frame and how i can extract data using this ethernet interrupt function static void interrupt_ethernet (void) __irq.Any help will be appreciated.Thank you.

Parents
  • That's a fairly standard thing to do.

    "static identifiers are visible in its own module only"

    True but (probably?) not relevant.

    ISRs are not (usually) called from source code - so it is (usually) appropriate that they are not visible to other modules!

    Especially as the OP reports that other examples do this.

    If this were a problem, the OP would have build errors pointing to it ...

Reply
  • That's a fairly standard thing to do.

    "static identifiers are visible in its own module only"

    True but (probably?) not relevant.

    ISRs are not (usually) called from source code - so it is (usually) appropriate that they are not visible to other modules!

    Especially as the OP reports that other examples do this.

    If this were a problem, the OP would have build errors pointing to it ...

Children