Search found 610 matches

by SeeCwriter
Tue Nov 15, 2022 1:41 pm
Forum: NetBurner Software
Topic: Adding lib path in v3.x
Replies: 5
Views: 1155

Re: Adding lib path in v3.x

Prepending 'lib' to the library name didn't help. Invoking: GNU C/C++ Linker c:/nburn/gcc/bin/../lib/gcc/m68k-unknown-elf/8.1.0/../../../../m68k-unknown-elf/bin/ld.exe: cannot find -llibagentlib.a c:/nburn/gcc/bin/../lib/gcc/m68k-unknown-elf/8.1.0/../../../../m68k-unknown-elf/bin/ld.exe: cannot find...
by SeeCwriter
Tue Nov 15, 2022 11:08 am
Forum: NetBurner Software
Topic: Adding lib path in v3.x
Replies: 5
Views: 1155

Adding lib path in v3.x

I'm trying to add a path to some libraries and I keep getting linker error "cannot find -lagentlib.a". The library is in this path: C:\Projects\nburn\Odu\SNMP\Lib In the Eclipse Project-->Properties-->C/C++ Build-->Settings-->GNU C/C++ Linker-->Libraries-->Library search path (-L) I added ...
by SeeCwriter
Thu Sep 08, 2022 1:37 pm
Forum: NetBurner Software
Topic: Failed to load the JNI
Replies: 1
Views: 1037

Failed to load the JNI

I had this same problem last year, and it has surfaced again. I have both v3.3.8 and v2.9.5 installed. Until today I have been able to switch between the two versions by renaming the root directories of c:\nburn to the version I want to use. The fix before was to edit the system path to put "c:...
by SeeCwriter
Wed Sep 07, 2022 8:13 am
Forum: NetBurner Software
Topic: Recovering from a corrupted image
Replies: 8
Views: 2216

Re: Recovering from a corrupted image

Yes, our network has a DHCP server. Most all our products use DHCP.
Is it correct to say that, should the rare event of a power interruption occur while writing an image to flash, there is no way to recover the module while it is in the field?
by SeeCwriter
Fri Sep 02, 2022 11:40 am
Forum: NetBurner Software
Topic: Recovering from a corrupted image
Replies: 8
Views: 2216

Re: Recovering from a corrupted image

The localdiscovery utility reports there are "no known devices on the Network". I don't know if the Nano I have is a newer one. The monitor is version 1.05, dated July 2020. Using monitor command "setup", it shows all network parameters as zero (IP, Netmask, etc). Using FLA, the ...
by SeeCwriter
Wed Aug 31, 2022 3:18 pm
Forum: NetBurner Software
Topic: Recovering from a corrupted image
Replies: 8
Views: 2216

Recovering from a corrupted image

When updating the firmware image on a NANO, if the NANO is reset while writing the image to flash, the image in flash is corrupted, as you would expect. When module boots up it goes to the monitor program. It is visible with the Discover webpage, but with an odd ip address. When you click the Config...
by SeeCwriter
Tue Jul 26, 2022 8:54 am
Forum: NetBurner Software
Topic: POST webpage data in v3.x
Replies: 3
Views: 1670

Re: POST webpage data in v3.x

To my post callback function I added function GetActiveHttpRequest to examine the request. I don't understand what parameter content_length is the length of. I thought it was the amount of data pointed to by pData, but that doesn't appear to be the case because when I print-out the data all bytes ar...
by SeeCwriter
Mon Jul 25, 2022 12:41 pm
Forum: NetBurner Software
Topic: POST webpage data in v3.x
Replies: 3
Views: 1670

Re: POST webpage data in v3.x

I followed your suggestion and created a callback function using example program SimplePostReceiver as a guide: CallBackFunctionPostHandler GHB( "Cal.htm", callbackCalDataPostHandler ); int callbackCalDataPostHandler( int sock, HTTP_Request &pd ) { char *pRxData = cmd_post_string; ipri...
by SeeCwriter
Mon Jul 25, 2022 9:10 am
Forum: NetBurner Software
Topic: POST webpage data in v3.x
Replies: 3
Views: 1670

POST webpage data in v3.x

I am converting a webpage used on a MOD5441X, built with v2.9.5 to use with v3.3.8. The webpage is working with one exception that I am having trouble with. One feature of the webpage is to get calibration data from the module and display it in a graph. This works. But the webpage is also supposed t...
by SeeCwriter
Thu Jul 21, 2022 8:17 am
Forum: NetBurner Software
Topic: Device Discovery
Replies: 4
Views: 1250

Re: Device Discovery

Since there are multiple devices on the same network, I added the device serial number to AppName to be able to identify each device. But the serial number is not available until I initialize my own code and copy the unit's configuration parameters from non-volatile memory. Through much painful test...