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 ...
Search found 6 matches
- 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: 13880
- Fri Jun 12, 2015 6:49 am
- Forum: NetBurner's Eclipse IDE
- Topic: NANO54415 Watchdog service routine example
- Replies: 2
- Views: 7626
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 useful ...
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 useful ...
- Thu Jun 11, 2015 10:25 am
- Forum: NetBurner's Eclipse IDE
- Topic: NANO54415 Watchdog service routine example
- Replies: 2
- Views: 7626
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 ...
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 ...
- Tue Apr 28, 2015 11:19 am
- Forum: NetBurner's Eclipse IDE
- Topic: Why can't linker find gettimeofday?
- Replies: 6
- Views: 14079
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 ...
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 ...
- 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: 6585
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.
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.
- 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: 6585
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 ...
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 ...