Search found 833 matches
- Sat May 27, 2017 4:15 pm
- Forum: NetBurner Software
- Topic: m68k-elf-g++: error: unrecognized command line option '-Wl'
- Replies: 6
- Views: 7793
Re: m68k-elf-g++: error: unrecognized command line option '-
It is gcc linker option. A quick google search has the definition: -Wl,option Pass option as an option to the linker. If option contains commas, it is split into multiple options at the commas. You can use this syntax to pass an argument to the option. For example, `-Wl,-Map,output.map' passes `-Map...
- Thu Feb 09, 2017 11:15 am
- Forum: NetBurner Hardware
- Topic: MOD5213 Serial Update
- Replies: 6
- Views: 7684
Re: MOD5213 Serial Update
If you are using a usb to serial converter it may be a flow control issue. Serial terminals are better at handling RTS/CTS.
- Wed Dec 21, 2016 4:46 pm
- Forum: NetBurner Software
- Topic: File system
- Replies: 1
- Views: 3158
Re: File system
My understanding is each task (and therefore each task priority) needs to have it's own path information for the file system. Otherwise task A could change the path for task B. I don't think the order matters for changing priorities, except for the fact if you switched the order of OSChangePrio() an...
- Wed Nov 30, 2016 9:32 am
- Forum: NetBurner Software
- Topic: web pages take a very long time to load.
- Replies: 19
- Views: 20955
Re: web pages take a very long time to load.
I would try the standard debugging technique of starting with a minimal static web page, then add your advanced features one by one until you isolate the code that creates the problem. There are also may web example programs with the tools, load and run those to verify function calls, variables and ...
- Thu Nov 10, 2016 10:01 am
- Forum: NetBurner Software
- Topic: SBL2e dividing serial messages on TCP
- Replies: 14
- Views: 16368
Re: SBL2e dividing serial messages on TCP
Are you able to guarantee the Modbus serial data will be spaced more than 100ms apart? You said each packet is 50 bytes. Why not set the packet settings to 50 instead of 512? That would tell you if there is any overlap.
- Thu Nov 03, 2016 11:23 am
- Forum: NetBurner Software
- Topic: SBL2e dividing serial messages on TCP
- Replies: 14
- Views: 16368
Re: SBL2e dividing serial messages on TCP
TCP is a stream protocol, which means there is never any guarantee what will be in a specific packet - but there is a guarantee all data will be delivered or your app will be notified of a timeout. You can almost think of it as a serial port stream of data. Whatever code you are writing needs to be ...
- Fri Oct 28, 2016 9:33 am
- Forum: NetBurner Software
- Topic: Cache Control on some media
- Replies: 2
- Views: 5918
Re: Cache Control on some media
I'm not a html expert, but my understanding was that caching was enabled by default and all you could do is turn it off with:
cache-control <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
cache-control <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
- Tue Oct 25, 2016 12:15 pm
- Forum: NetBurner Software
- Topic: "Unable to parse map file for Ram usage"
- Replies: 3
- Views: 6659
Re: "Unable to parse map file for Ram usage"
That is very helpful to know. Thank you for posting it.
- Fri Sep 02, 2016 9:22 am
- Forum: NetBurner Software
- Topic: Timeout and disconnect SBL2E
- Replies: 1
- Views: 4667
Re: Timeout and disconnect SBL2E
What you are encountering is called a half-open socket and is a common problem with tcp. If two hosts have an established tcp connection, and no data is being sent at the time a client crashes or there is a network problem, the other client has no way of knowing the first client had a problem, and t...
- Sat Aug 27, 2016 12:41 pm
- Forum: NetBurner Software
- Topic: MOD54417 "Device Platform" information lost
- Replies: 4
- Views: 7527
Re: MOD54417 "Device Platform" information lost
I believe that get compiled in as part of your app, so you may have a memory corruption problem. Try building and loading one of the example programs with no modifications, and see if the problem persists.