Search found 9 matches

by zx5000
Sat Jul 23, 2011 1:24 pm
Forum: NetBurner Software
Topic: autoupdate fails
Replies: 2
Views: 2552

Re: autoupdate fails

Good catch. It was the network on my virtual machine that quit working. At some point the network adapter stopped and since I had not rebooted the VM I thought I created the problem with my netburner appliaction.

Thanks.

Jeff
by zx5000
Sat Jul 23, 2011 7:42 am
Forum: NetBurner Software
Topic: autoupdate fails
Replies: 2
Views: 2552

autoupdate fails

At some point in developing my application the autoupdate started to fail. I can still put it on the dev board and flash it via serial port.

Has anyone seen this and are there any known gotchas that I should avoid?

TIA
by zx5000
Fri Jul 22, 2011 9:34 am
Forum: NetBurner Software
Topic: Web server freezes up
Replies: 1
Views: 1887

Solved: Web server freezes up

I fixed it. It had nothing to do with the IRQ or GPIO. There was a local array overflow in a function called by FUNCTIONCALL in the web page.
by zx5000
Thu Jul 21, 2011 8:25 pm
Forum: NetBurner Software
Topic: Web server freezes up
Replies: 1
Views: 1887

Web server freezes up

I created a new application based on another one that works. On this setup the board uses different GPIO settings and wiring. The web server freezes the board as soon as an incoming request is made.

Is there any caveats with using GPIO or IRQ (as GPIO) pins together with the http server?

TIA
by zx5000
Fri Jun 03, 2011 10:44 am
Forum: NetBurner Software
Topic: vsprintf question
Replies: 8
Views: 7934

Re: vsprintf question

Here is the screencap from my paths. I did this earlier when I got rid of the inclusion error.
by zx5000
Fri Jun 03, 2011 10:25 am
Forum: NetBurner Software
Topic: vsprintf question
Replies: 8
Views: 7934

Re: vsprintf question

Getting closer. The inclusion error goes away but I still get compile errors.

Tried pointing to both stdarg.h folders.

C:\nburn\gcc-m68k\m68k-elf\include/stdio.h:251: error: '__gnuc_va_list' has not been declared
by zx5000
Fri Jun 03, 2011 9:52 am
Forum: NetBurner Software
Topic: vsprintf question
Replies: 8
Views: 7934

Re: vsprintf question

How do you get around the "Unresolved inclusion" error in the nbeclipse?
by zx5000
Fri Jun 03, 2011 7:42 am
Forum: NetBurner Software
Topic: vsprintf question
Replies: 8
Views: 7934

Re: vsprintf question

There is no stdarg.h in the netburner environment and vsprintf is defined in stdio.h

I uninstalled and reinstalled the nndk. Are there extra components that must be downloaded separately?

thanks
by zx5000
Sat May 28, 2011 5:56 am
Forum: NetBurner Software
Topic: vsprintf question
Replies: 8
Views: 7934

vsprintf question

I'm having trouble with vsprintf. Any tips would be appreciated.

Simple code (standard stuff)

#include <stdio.h> // gnu usual is stdarg.h but it's declared here instead

.
.
.

char vbuf[512];

va_list argp;
va_start(argp, fmt);
vsprintf(vbuf, fmt, argp);


Produces the following build error ...