Dear All, We have an excellent opening with one of our premier partner in Bangalore, India. Following are the details for your kind perusal. Company: Location:...
Dear Members A NEW Page of great Freebies was just added ready for Thursday 2nd October. Visit Now! If you would like a veritable 'mountain' of free-stuff,...
Dear Members A NEW Page of great Freebies was just added ready for Monday 6th October. Visit Now! If you would like a veritable 'mountain' of free-stuff, take...
(hardware - PK70) All, I have spent the last 3 hours trying to make heads or tails out of a seemingly sporadic and inconsistent error. I've since given up the...
I have had problems like this in the past. I would bet that ultimately you will find it is a loose pointer. I know, you've looked at the code from every angle...
Chris, Yes, you were right. It was an error in my logic and it wasn't quite as sporadic as I originally thought. I wrote a simple .ini file parser (a...
Dear Members A NEW Page of great Freebies was just added ready for Thursday 9th October. Visit Now! If you would like a veritable 'mountain' of free-stuff,...
Dear Members A NEW Page of great Freebies was just added ready for Monday 13th October. Visit Now! If you would like a veritable 'mountain' of free-stuff, take...
Dear Members A NEW Page of great Freebies was just added ready for Thursday 16th October. Visit Now! If you would like a veritable 'mountain' of free-stuff,...
Dear Members A NEW Page of great Freebies was just added ready for Monday 20th October. Visit Now! If you would like a veritable 'mountain' of free-stuff, take...
I have programmed my SB72-EX to read/write to the serial port, FTP and serve webpages through the HTTP task. It appears that the HTTP task can lockup while the...
Hi, I am a beginner to netburner programming. I am trying to run a few example programs. For the first time the program was downloaded,the program got ...
Dear Members A NEW Page of great Freebies was just added ready for Thursday 23rd October. Visit Now! If you would like a veritable 'mountain' of free-stuff,...
Dear Members A NEW Page of great Freebies was just added ready for Monday 27th October. Visit Now! If you would like a veritable 'mountain' of free-stuff, take...
Hi Guys , I have a problem to send data to serial port ,Here is my problem : When 10(Dec) or 0A(Hex) is passed to the function PUTCHAR(10). The function...
Putchar is a hi-level command that 'does things' to your data use: char buf[2]; buf[0] = 0x0a; write(0,buf,1) to write directly to the serial port 0 and etc. ...
... Important to remember too is that netburner modules have monitors built in and looking for certain sequences of binary data to signal Stop/Load. If you...
Allen: the monitor is not listening or being executed at run-time on 5206e, 5272, 5270, 5282, only boot time. No data sent out the serial port will effect ...
Chris, Thanks , My module is MOD5270. I tried to run your code . I am working on it ....that is great idea. Just I need the # include <iosys.h> But I still...
Are you extra sure that you don't have some other code somewhere doing a print or some such? "putc" should not be adding anything to the output. OD, of course,...
Ashkan: How do you know that the module is speaking CR/LF? Are you looking at the data with a viewcomm application? Generally the receiver (Hyperterm, ...
Hi guys , I fix it with: ioctl(0, IOCTL_CLR | IOCTL_TX_CHANGE_CRLF); Stdin. And try to turn the off this definition.and dose work perfect .. Thanks a lot to...
Hi guys , I fix it with: ioctl(0, IOCTL_CLR | IOCTL_TX_CHANGE_CRLF); Stdin. And try to turn the off this definition.and dose work perfect .. Thanks a lot to...
Is the binary data being transmitted or are you receiving as well? Someone mentioned that you could hit a magic sequence on the received side that might cause...
Thomas , Actually is for touch screen display but at this moment just send . I did not progress for touch yet.Means just sent and receiving is blank . I am...