Search found 544 matches
- Tue Dec 21, 2021 12:58 pm
- Forum: NetBurner Software
- Topic: Image checksum
- Replies: 8
- Views: 1308
Re: Image checksum
That works. Thank you.
- Tue Dec 21, 2021 11:35 am
- Forum: NetBurner Software
- Topic: reprogramming
- Replies: 18
- Views: 2739
Re: reprogramming
I asked about their platform but they are being tight-lipped. They aren't giving up any details of their equipment. They are probably using Linux, but that is just a guess. And they aren't interested in using wget, the config webpage, or any utilities to do the reprogramming. A few posts ago, I ment...
- Tue Dec 21, 2021 7:35 am
- Forum: NetBurner Software
- Topic: Image checksum
- Replies: 8
- Views: 1308
Re: Image checksum
Still doesn't work: PlatformFlashHeaderStruct phs; SPIFlash lclSPI_Main( 0 ); lclSPI_Main.ReadData((puint8_t)&phs,sizeof(phs),0); if ( phs.VerifyCorrect() ) puts( "Correct" ); else puts( "Not Correct" ); iprintf( "Csums[%08lX,%08lX]\r\n", phs.U32BlockSum, phs.U32StructSum ); Output: Not Correct Csum...
- Mon Dec 20, 2021 3:37 pm
- Forum: NetBurner Software
- Topic: Image checksum
- Replies: 8
- Views: 1308
Re: Image checksum
I tried this: uint8_t buf2[16]; SPIFlash lclSPI_Main( 0 ); lclSPI_Main.ReadData(buf2,8,0); iprintf( "ChkSum: 0x%02x 0x%02x 0x%02x 0x%02x \r\n", buf2[0], buf2[1], buf2[2], buf2[3] ); iprintf( "ChkSum: 0x%02x 0x%02x 0x%02x 0x%02x \r\n", buf2[4], buf2[5], buf2[6], buf2[7] ); Output is: ChkSum: 0x00 0x0...
- Mon Dec 20, 2021 11:31 am
- Forum: NetBurner Software
- Topic: Image checksum
- Replies: 8
- Views: 1308
Image checksum
Using 3.3.5 tools. Using Eclipse to build my NANO app, there are "Code Checksum" and "Struct Checksum" values displayed in the Console window of Eclipse. I assume one or both of those are made part of the image file. After an image file is transferred to the module, is it possible for my app to get ...
- Mon Dec 20, 2021 11:19 am
- Forum: NetBurner Software
- Topic: reprogramming
- Replies: 18
- Views: 2739
Re: reprogramming
I shared with our customer how they can program the module via the module's webpage or with the nbupdate utility. They are not interested in those methods. They want to write their own code to update firmware. So I captured the reprogramming process with wireshark and wrote a description of how to d...
- Tue Dec 14, 2021 8:46 am
- Forum: NetBurner Software
- Topic: Using config.json file
- Replies: 5
- Views: 989
Re: Using config.json file
Then I assume module specific parameters are ignored, such the link-local IPv6 address and the MAC address.
Can I edit the file to make it more readable by giving each parameter its own line and still be able to upload it successfully?
Can I edit the file to make it more readable by giving each parameter its own line and still be able to upload it successfully?
- Tue Dec 14, 2021 7:31 am
- Forum: NetBurner Software
- Topic: Using config.json file
- Replies: 5
- Views: 989
Using config.json file
Using the Config webpage of a module, after I get the configuration setup can I then download that file and upload it to other modules to configure them the same?
- Mon Dec 13, 2021 7:11 am
- Forum: NetBurner Software
- Topic: reprogramming
- Replies: 18
- Views: 2739
Re: reprogramming
I was not aware of nbupdate. I tried it and that might be all I need. What about feedback to the user? The utility outputs two strings to the console, one labeled uriReq, and one urlStr, which are identical, then the number 200. But there is nothing to indicate whether the reprogramming was successf...
- Fri Dec 10, 2021 7:01 am
- Forum: NetBurner Software
- Topic: reprogramming
- Replies: 18
- Views: 2739
Re: reprogramming
We have customers that have hundreds of our product fielded and when they need a firmware update they don't want to have to use a utility, such as Autoupdate, or a webpage, to program them individually. Using the discovery webpage for v3.x products could probably work without actually opening a webp...