Is there source available for NANO54415/system/saved_od/dbethernet.od ? The prebuilt one locks me in to an ETHER_SEND_PRIO of 38. I wanted to keep EtherSend as the highest priority task while debuggnig, but that limits the number of tasks I can run.
Thanks,
mruck
dbethernet.od source for Nano?
Re: dbethernet.od source for Nano?
No. The source is not available. I have however, modified the debug driver to use a variable for the task number instead of a macro. It is a weak reference variable (meaning you can 'extern' the variable or just outright create you own copy) that you can set in your application. Note that this variable only exists for the debug driver. As such, you can assign in global static scope the variable:
-Dan
Code: Select all
int DB_ETHER_SEND_PRIO = <my different priority>;
Dan Ciliske
Project Engineer
Netburner, Inc
Project Engineer
Netburner, Inc
Re: dbethernet.od source for Nano?
That worked. Thanks!