dbethernet.od source for Nano?

Discussion to talk about software related topics only.
Post Reply
mruck
Posts: 7
Joined: Mon Dec 16, 2013 9:43 am

dbethernet.od source for Nano?

Post 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
User avatar
dciliske
Posts: 624
Joined: Mon Feb 06, 2012 9:37 am
Location: San Diego, CA
Contact:

Re: dbethernet.od source for Nano?

Post 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
Dan Ciliske
Project Engineer
Netburner, Inc
mruck
Posts: 7
Joined: Mon Dec 16, 2013 9:43 am

Re: dbethernet.od source for Nano?

Post by mruck »

That worked. Thanks!
Post Reply