We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
So, surely, you should be looking here:
www.keil.com/.../group__net_e_t_h___func.html
And, with a Pro licence, you have access to Keil support ...
We purchased three years back,so they support only for one year from the date of purchase. For UDP reception, Currently,We are using udp callback function and procrec function to receive and process.
U16 udp_callback (U8 soc, U8 *rip, U16 rport, U8 *buf, U16 len) { Rem_IP[0]=rip[0]; Rem_IP[1]=rip[1]; Rem_IP[2]=rip[2]; Rem_IP[3]=rip[3]; R_Port= rport; Rec_Length = len; if (soc != socket_udp) { return (0); } procrec(buf); return (0); }
void procrec (U8 *buf) { }
Now for the same application,i want use the interrupt function "static void interrupt_ethernet (void) __irq".Kindly help me.
Please read the instructions for posting source code.
See this picture: www.danlhenry.com/.../keil_code.png