Search found 6 matches

by adamstg
Mon Aug 01, 2016 10:16 am
Forum: NetBurner Software
Topic: Problem enabling UCOS_TIME lib in predef.h NNDK 2.7.0
Replies: 1
Views: 12894

Re: Problem enabling UCOS_TIME lib in predef.h NNDK 2.7.0

hello, i had similar issues. i was trying to set this #define UCOS_TIME (1) in constants.h then i found this thread and tried to put the #define UCOS_TIME (1) in predef.h and it this seems to have done it I am using is Version NNDK 2.7.1 , see NBEclipse -> help -> About NBEclipse for your version nu...
by adamstg
Fri Jun 12, 2015 6:49 am
Forum: NetBurner's Eclipse IDE
Topic: NANO54415 Watchdog service routine example
Replies: 2
Views: 6029

Re: NANO54415 Watchdog service routine example

i e-mailed support and they got back to me for the nano the example to look at is C:\nburn\examples\NANO54415\NanoWatchDog This will become one of your new best friends. Run it on the examples folder searching for "dog" in the file name https://www.mythicsoft.com/agentransack this looks us...
by adamstg
Thu Jun 11, 2015 10:25 am
Forum: NetBurner's Eclipse IDE
Topic: NANO54415 Watchdog service routine example
Replies: 2
Views: 6029

NANO54415 Watchdog service routine example

I am trying to experiment with the Watchdog. After reading this thread http://forum.embeddedethernet.com/viewtopic.php?f=5&t=596 and then looking at the example given C:\Nburn\examples\AutoUpdateFeatures i've noticed this example isn't good for the NANO54415, see code below. void ServiceWatchdog...
by adamstg
Tue Apr 28, 2015 11:19 am
Forum: NetBurner's Eclipse IDE
Topic: Why can't linker find gettimeofday?
Replies: 6
Views: 10881

Re: Why can't linker find gettimeofday?

I never did find gettimeofday(); no idea why a forward declaration would be included in time.h but no definition provided in the standard library. UnitTest++ was using gettimeofday() for a simple timer, so I just rewrote that bit using time() and difftime(). If anyone else runs into this problem th...
by adamstg
Fri Mar 06, 2015 8:59 am
Forum: NetBurner's Eclipse IDE
Topic: NBEclipse, Creating library and linking it to a project
Replies: 1
Views: 5233

Re: NBEclipse, Creating library and linking it to a project

after some playing around i got something working

instead of having the lib as a project in the workspace, i simply put all the .h and .cpp files in a directory and linked my project to all these file in that directory.
by adamstg
Fri Mar 06, 2015 8:42 am
Forum: NetBurner's Eclipse IDE
Topic: NBEclipse, Creating library and linking it to a project
Replies: 1
Views: 5233

NBEclipse, Creating library and linking it to a project

I'm having some trouble trying to figure out exactly how to create and link a library a project so far i have created the library project as a "Netburner Device Library" http://s24.postimg.org/pei8h0od1/Untitled.png added all my .h and .cpp files, and then attempted to link this lib to a p...