Search found 587 matches

by tod
Wed Sep 24, 2014 4:11 pm
Forum: NetBurner's Eclipse IDE
Topic: Javascript and Eclipse
Replies: 3
Views: 4620

Re: Javascript and Eclipse

My workaround has been to go "touch" an HTML file after modifying a .js file. Usually I just add a space character on a comment line.
Much faster than a full rebuild, not as convenient as renaming them .html, which never occurred to me.
by tod
Mon Jun 30, 2014 12:03 pm
Forum: NetBurner Software
Topic: Makefile help MOD5441X!
Replies: 7
Views: 5180

Re: Makefile help MOD5441X!

Sorry about the slow response, the forum wouldn't allow me to log in for several days. It doesn't appear to me you are having a build problem. You're just seeing an uncaught exception. My primary piece of advice is just add some high level catches and narrow in on the problem. Having an uncaught exc...
by tod
Fri Jun 13, 2014 5:06 pm
Forum: NetBurner's Eclipse IDE
Topic: How to create a makefile
Replies: 6
Views: 7277

Re: How to create a makefile

I don't know much about SlickEdit but I do know they have an Eclipse plug-in. Might get you the automated build system and your editor of choice.
by tod
Thu Jun 05, 2014 10:46 am
Forum: NetBurner Software
Topic: Speed Serial utility
Replies: 7
Views: 3683

Re: Speed Serial utility

In my nburn\pcbin folder there is a program called "FastSerialDebug.exe" I suspect that is what you are looking for. MTTY is just a serial port terminal program. I've never noticed this before, I suspect most of for years have just been doing debugging over Ethernet because its so much fas...
by tod
Thu May 22, 2014 12:30 pm
Forum: NetBurner Software
Topic: constants.h sizes
Replies: 9
Views: 4727

Re: constants.h sizes

<shamelessPromo>
Eclipse does so much it's easy to forget features exist, which is why a certain course or two on Pluralsight should be watched again and again and...
:D
</shamelessPromo>
by tod
Thu May 22, 2014 10:55 am
Forum: NetBurner Software
Topic: constants.h sizes
Replies: 9
Views: 4727

Re: constants.h sizes

Dan,
If it were called

Code: Select all

HTTP_RX_BUFFERSIZE_BYTES  10000
it would be self-documenting. I suppose changing the name would break code but adding a second name would not.
by tod
Thu May 22, 2014 10:52 am
Forum: NetBurner Software
Topic: constants.h sizes
Replies: 9
Views: 4727

Re: constants.h sizes

I don't know if it's been disabled in NBEclipse but the standard installs that I use allow you to search directories right from inside Eclipse. Search->Search... Make sure the Remote Search tab is selected. The green arrows show the folder selection areas. The blue arrows show some features that I f...
by tod
Mon May 19, 2014 1:32 pm
Forum: NetBurner Software
Topic: MOD54415 StartHTTP()
Replies: 6
Views: 3395

Re: MOD54415 StartHTTP()

I picked a new PRIO for my task and made sure it did not conflict with any other uC tasks Did you do this by checking that the return value of OSTaskCreate is OS_NO_ERR? I think it's a shame that so much example code just shows the call without checking for the returned error code. Easy enough to a...
by tod
Wed May 14, 2014 11:39 am
Forum: NetBurner Hardware
Topic: MOD5441X Boot
Replies: 7
Views: 4522

Re: MOD5441X Boot

Since I just had a boot problem that turned out to be power supply related I would just chime in my software guy $.02 worth and ask if you have anything that can draw a lot of power during the boot process?
by tod
Tue May 13, 2014 2:14 pm
Forum: NetBurner Software
Topic: Transferring data between different tasks in MOD54415
Replies: 8
Views: 4203

Re: Transferring data between different tasks in MOD54415

I typically use the MailBox feature along with a semaphore to protect the data. I'm not sure what Dan means by those structures contain their own storage for the transferred data. I tend to send a pointer to a data buffer. There is storage for the pointer but AFAIK there is not storage for the buffe...