Search found 27 matches
- Mon Nov 24, 2025 10:35 am
- Forum: NetBurner's Eclipse IDE
- Topic: java error on new PC and legacy eclipse
- Replies: 4
- Views: 2165
Re: java error on new PC and legacy eclipse
Never mind. I copied over my old c:\nburn tree and that works. Looks like there is a private java distro in C:\nburn\NBEclipse\jre that was not in the old installer. I should be ok. Thanks anyway.
- Mon Nov 24, 2025 9:18 am
- Forum: NetBurner's Eclipse IDE
- Topic: java error on new PC and legacy eclipse
- Replies: 4
- Views: 2165
Re: java error on new PC and legacy eclipse
Followup: same problem with JDK-8 32 bit, which I read was the last 32 bit java (2014). Same error, exit code 13.
- Mon Nov 24, 2025 9:00 am
- Forum: NetBurner's Eclipse IDE
- Topic: java error on new PC and legacy eclipse
- Replies: 4
- Views: 2165
java error on new PC and legacy eclipse
I maintain a system on 5441x with NNDK2.8.7. Every few years I face reinstalling NNDK 2.8.7 on a new PC. This time the "new system" is Win11Pro running as a VMWare guest under Fedora42 host. NNDK installed ok from an old EXE, with an old serial number, but Eclipse is throwing Java exceptions. For ...
- Fri Nov 24, 2023 1:03 pm
- Forum: NetBurner Hardware
- Topic: uCos task for polled I/O, reasonable speed expectations?
- Replies: 2
- Views: 33987
uCos task for polled I/O, reasonable speed expectations?
I have a "legacy" system (2017+) running on 5441x and NetBurner 2.8. It polls J2.10 for a trigger and sends a line from a CSV file out the serial port when the trigger is detected. Embedded webserver, ftp server, and SD card code are all straight from examples. This has worked for several years, but ...
- Fri Apr 24, 2020 11:46 am
- Forum: NetBurner Software
- Topic: False "Out of memory" on 5441x
- Replies: 5
- Views: 5627
Re: False "Out of memory" on 5441x
> Why are you are using openssl rather than the Netburner SSL implementation?
I needed ECDSA for a project, which is not provided by NB, and decided to go all the way and port openssl to NB. That decision enabled the current project to quickly bring in standard des, 3des and MAC libraries.
The ...
I needed ECDSA for a project, which is not provided by NB, and decided to go all the way and port openssl to NB. That decision enabled the current project to quickly bring in standard des, 3des and MAC libraries.
The ...
- Fri Apr 24, 2020 6:35 am
- Forum: NetBurner Software
- Topic: False "Out of memory" on 5441x
- Replies: 5
- Views: 5627
Re: False "Out of memory" on 5441x
That's good info. My application uses opensll as a library, so some dynamic allocation may be in play. But this happens right after boot, before any openssl lib functions are called.
Based on what you wrote, I rebooted to the boot loader and then sent the factory test image from the IDE. Back in ...
Based on what you wrote, I rebooted to the boot loader and then sent the factory test image from the IDE. Back in ...
- Fri Apr 24, 2020 4:55 am
- Forum: NetBurner Software
- Topic: False "Out of memory" on 5441x
- Replies: 5
- Views: 5627
False "Out of memory" on 5441x
Yesterday I was running along developing on my 5441x system, IDE 2.8.7, and I started getting false "Out of Memory" errors on code load. The first time it happened, I was going from a Run build to a Debug session with no source changes. My build uses less than 5% of memory, see screenshot. I powered ...
- Mon Jan 13, 2020 12:48 pm
- Forum: NetBurner Software
- Topic: OSDumpTask and OSDumpTCBStacks in 5441x
- Replies: 3
- Views: 4625
Re: OSDumpTask and OSDumpTCBStacks in 5441x
Hi Tom, I can see the declared stack sizes, and have changed a bunch of on-stack arrays to static. None were bigger than 64 bytes. I suppose I could declare a new task with a nice big stack for all my UserMain stuff. But this is supposed to be a high reliability system. Now that I think I have seen ...
- Fri Jan 10, 2020 8:29 am
- Forum: NetBurner Software
- Topic: OSDumpTask and OSDumpTCBStacks in 5441x
- Replies: 3
- Views: 4625
OSDumpTask and OSDumpTCBStacks in 5441x
I suspect I am running low on stack space in a Mod5441x project, and need some help accessing OSDumpTasks and OSDumpTCBStacks. They are not in C:\nburn\lib\MOD5441x.a or DBMOD5441x.a (filesinspected with emacs). The declarations in my ucos.h are grayed out, looks like UCOS_STACKCHECK is not defined ...
- Mon Oct 29, 2018 12:18 pm
- Forum: NetBurner Software
- Topic: IP range vs Port Numbers (weird)
- Replies: 1
- Views: 3395
Re: IP range vs Port Numbers (weird)
Followup: it turns out that my customer's code, written for Winsock, is the source of the problem.
hostInfo = gethostbyaddr((char *)&addr,4,AF_INET); // NULL at 168!
if ( hostInfo==NULL)
return(42);
hostinfo is always NULL - UNLESS the whole system is set up for 192.192.192.xxx! Then it ...
hostInfo = gethostbyaddr((char *)&addr,4,AF_INET); // NULL at 168!
if ( hostInfo==NULL)
return(42);
hostinfo is always NULL - UNLESS the whole system is set up for 192.192.192.xxx! Then it ...