Page 1 of 1

dbethernet.od source for Nano?

Posted: Sun Aug 31, 2014 9:18 am
by mruck
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

Re: dbethernet.od source for Nano?

Posted: Tue Sep 02, 2014 10:10 am
by dciliske
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:

Code: Select all

int DB_ETHER_SEND_PRIO = <my different priority>;
-Dan

Re: dbethernet.od source for Nano?

Posted: Tue Sep 02, 2014 3:47 pm
by mruck
That worked. Thanks!