Search found 24 matches

by k1mgy
Mon Feb 02, 2015 9:38 am
Forum: NetBurner's Eclipse IDE
Topic: NNDK Update; Serial Numbers
Replies: 6
Views: 7963

Re: NNDK Update; Serial Numbers

I appreciate what you say. Agreed, and I had done this, but not well enough. All my SN's were stored in an Evernote database. When they changed versions they did not have backwards compatible format (talk about dumb) nor a converter. So I'm stuck with old data I can't access anymore. I refused to st...
by k1mgy
Mon Feb 02, 2015 6:54 am
Forum: NetBurner's Eclipse IDE
Topic: NNDK Update; Serial Numbers
Replies: 6
Views: 7963

Re: NNDK Update; Serial Numbers

I only see three SN's and I have 5 units. I'll write to the sales address.

As for re-installing the tools, at least we should be able to download the version that came with our product. A windows crash (happens too often) and re-install means without the tools I'm SOL.

/m
by k1mgy
Sat Jan 31, 2015 6:30 am
Forum: NetBurner's Eclipse IDE
Topic: NNDK Update; Serial Numbers
Replies: 6
Views: 7963

NNDK Update; Serial Numbers

Just getting back into using Netburner tools after various diversions. As have application that would be perfect for simplicity of SB70LC and possibly 5270, pulled these from storage. Issues: 1. Tried to download latest SDK. "Support expired". Had to dig out old saved SDK binary. Strike 1 ...
by k1mgy
Mon Jul 18, 2011 9:46 am
Forum: Off-Topic
Topic: Spamming getting worse
Replies: 17
Views: 16017

Re: Spamming getting worse

Hi Forrest, Here's one below. I searched and it has since been deleted. There have been lots of others. Maybe the spammer got rid of them to clean any tracks. edmin_654 should get the flush handle. /m User : edmin (edmin_654@yahoo.com) Subject : 5 Ideas to Getting a great Golf player Thread : 5 Idea...
by k1mgy
Mon Jul 18, 2011 7:08 am
Forum: Off-Topic
Topic: Spamming getting worse
Replies: 17
Views: 16017

Re: Spamming getting worse

I'd rather see this set up as a mail reflector.

Forums like this are useful in some ways, but a simple mail reflector is much easier to manage.

For now, users who need this resource and depend upon it ought to have privileges to delete accounts when spam is posted.
by k1mgy
Fri Mar 11, 2011 6:04 pm
Forum: NetBurner's Eclipse IDE
Topic: What causes the build process to try and compile .js files?
Replies: 1
Views: 3108

Re: What causes the build process to try and compile .js files?

At some point along the way (I am the culprit here) I had installed Mylin Javascript Development support. This was done as there were some dependencies I needed to satisfy with version control integration (GALILEO). I removed the support for Javascript and the problem disappeared. Of course, a new o...
by k1mgy
Thu Mar 10, 2011 10:30 am
Forum: NetBurner Software
Topic: Cumulative Processor Time
Replies: 6
Views: 4631

Re: Cumulative Processor Time

What is the value get? The description you included for clock() appears to say it a way to get seconds since boot. Are you trying to get seconds? Seems that the result is a function of CLOCKS_PER_SEC. The description seems to indicate that the value returned will be CLOCKS_PER_SEC/value. In my case...
by k1mgy
Thu Mar 10, 2011 9:52 am
Forum: NetBurner Software
Topic: Cumulative Processor Time
Replies: 6
Views: 4631

Re: Cumulative Processor Time

The compiler doesn't crash, but I get this:
c:/nburn/gcc-m68k/bin/../lib/gcc/m68k-elf/4.2.1/../../../../m68k-elf/lib/m5208\libc.a(lib_a-times.o): In function `_times_r':
times.c:(.text+0xe): undefined reference to `times'
Looks like an error in libc.

Who maintains libc for this platform?
by k1mgy
Thu Mar 10, 2011 9:10 am
Forum: NetBurner Software
Topic: Serial Flush
Replies: 6
Views: 5248

Re: Serial Flush

BOOLEAN FlushPort(void) { int rv = 0; rv = ReadWithTimeout(fd, NULL, 1024, 10); if (rv<0) iprintf("FlushPort():Error %i\n",rv); return (true); } Note: ReadWithTimeout(fd, NULL, 1024,0); blocks . serial.cpp: * Waits for a specified amount of time (in ticks) for data to be available for * r...
by k1mgy
Tue Mar 08, 2011 4:04 pm
Forum: NetBurner Software
Topic: Serial Flush
Replies: 6
Views: 5248

Re: Serial Flush

You can specify which buffer to flush, or both. In my case, flushing the receive buffers will do fine. Your ReadWithTimeout() is a good suggestion. Perhaps not as efficient as pulling the bathtub plug directly on the internal buffer, but it will work. On your suggestion I'll have a look at serial.cp...