Search found 624 matches
- Wed Nov 13, 2024 6:46 am
- Forum: NetBurner Software
- Topic: v2.9.5 System rebuild error
- Replies: 2
- Views: 114
Re: v2.9.5 System rebuild error
It appears that Outlook adds formatting characters to code that's pasted into an email, and copying code from the email and pasting it into a source file includes those extra characters, and the file won't compile. We had to replace all white-space with spaces.
- Tue Nov 12, 2024 10:18 am
- Forum: NetBurner Software
- Topic: v2.9.5 System rebuild error
- Replies: 2
- Views: 114
v2.9.5 System rebuild error
In v2.9.5, when I click "Rebuild Modified System Files" in Eclipse I get the following error message:
The build console is blank.
Code: Select all
'Clean and Rebuild System files' has encountered a problem.
Library Build Error. See build console for details.
- Tue Aug 06, 2024 11:20 am
- Forum: NetBurner Software
- Topic: Suspicious variable
- Replies: 3
- Views: 4179
Re: Suspicious variable
I only found these because I rebuilt the system libs, and that always generates a lot of compiler warnings. And warnings make me nervous. So I go through every warning to see if I can do something to remove it without changing how the code works.
- Thu Aug 01, 2024 2:16 pm
- Forum: NetBurner Software
- Topic: Suspicious variable
- Replies: 3
- Views: 4179
Suspicious variable
The following snippets are from v3.5.2. In File SslSocket.cpp, beginning at line 274, It appears that local variable 'ret' can be used uninitialized at line 298. uint16_t SslSocket::InitSocket(int tcpFd, WOLFSSL_CTX *ctx, const char *commonName, uint32_t sockFlags /* = 0 */, int verifyPeer) { OSCrit...
- Thu Aug 01, 2024 12:42 pm
- Forum: NetBurner Software
- Topic: v3.5.1 errors
- Replies: 5
- Views: 3933
Re: v3.5.1 errors
Ah! When I downloaded 3.5.1 on the June 17, there was no 3.5.2.
And the errors in my original post were resolved by correcting the path to my overload directory. I don't see the connection between the path to predef.h and the errors with FWerr.h. Very odd.
And the errors in my original post were resolved by correcting the path to my overload directory. I don't see the connection between the path to predef.h and the errors with FWerr.h. Very odd.
- Thu Aug 01, 2024 12:06 pm
- Forum: NetBurner Software
- Topic: v3.5.1 errors
- Replies: 5
- Views: 3933
- Thu Aug 01, 2024 11:05 am
- Forum: NetBurner Software
- Topic: v3.5.1 errors
- Replies: 5
- Views: 3933
v3.5.1 errors
I installed v3.5.1 and imported my NANO project. I created overload path "overload/nbrtos/include" and put an edited version of predef.h in it, per the readme file. The readme file then says to rebuild the Netburner Archive by selecting "Clean Netburner Archive" under the Build T...
- Wed Jul 03, 2024 10:30 am
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 6448
Re: Using TFTP
Yes. We only have one file to send.
- Fri Jun 28, 2024 12:59 pm
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 6448
Re: Using TFTP
We only need to source/send a file. The file is installed at the factory during the manufacturing process via a different method and stored in EEPROM. We receive a TCP command to prepare for file transfer, which causes the file to be copied to a buffer in sram. File size is around 128k. It seems lik...
- Fri Jun 28, 2024 8:30 am
- Forum: NetBurner Software
- Topic: Using TFTP
- Replies: 6
- Views: 6448
Using TFTP
I would like to add TFTP as a server to my NANO project. But the functions in tftp.cpp appear to be designed only for client use. Is there a server option available for the v2.9.5/6/7 version of the tools?