VOGONS

Common searches


Search results

Display options

Re: SoftMPU network support with packet driver

in SoftMPU
No need to be puzzled ... The packet driver spec has you register a handler for each packet type you are interested in. EtherDFS does not conflict with IP or ARP, so you can have two different handlers. But if EtherDFS used IP that would not be possible.

Re: SoftMPU network support with packet driver

in SoftMPU
That was the corner case I was referring to. The actual limitation has more to do with the packet driver can only be given one receiver function for a given set of EtherTypes. So while any code anywhere can send just by using the packet driver interrupt, only one receiver function can be called for …

Re: SoftMPU network support with packet driver

in SoftMPU
Picking up an old thread ... In the time between my last reply on this thread and now I've figured out how to reliably send and receive UDP packets from device driver code through a packet driver. UDP wasn't easy, but it's much easier than TCP. The code is readily adaptable to a TSR. For this …

Page 3 of 20