You need to first set the pins as I2C pins and not GPIO. The cpu is not using the pins that way until you set it up as such. This is a safety feature - most...
Hello, I'm using a mod5270 and version 1.2.0 of NBEclipse (according to the .eclipseproduct file).Communication with the serial port is performed with the...
... Yeah, according to the source code listing in i2cmaster.c, pin 4+5 initialization is taken care of when the I2CInit() function is called. For some of the...
A few days ago I wrote about a bug in sscanf where it converts a -0 string into -2.0 instead of 0. I followed a suggestion to initialize the format strings as...
The NetBurner I2C library can switch between read and write in the same transfer with the restart function. Make sure you have the correct pull-up resistors...
Hello, I'm using a mod5270 to communicate with a modem. I've noticed something strange: when the AT+CMGL="ALL" command is issued, I get a trap error. If I...
Not having a serial port on your PC should not pose a problem as long as you have a USB port. You can buy very inexpensive USB to serial converters, I use them...
I'm not sure if I really understand your question. Do you just want to know how to set up a NB to be a TCP server? If so I do this as my SOP so I can post a...
About a year back I made a couple of screencasts <http://www.syncorsystems.com/Engineering/NetBurner/tips.htm> on using Eclipse. I often have to work in...
I noticed a while back that if you use a .h file without a corresponding .c or .cpp file the build process ignores changes to the file. I have just gotten into...
Hello gurus! I try to pulse GPIO (pin 7) on NetBurner MOD5213 as fast as I can. However the best result I could get is only 2.6 Mhz! Whereas MOD5213 should...
Hi there Struggling with the low-power modes on NetBurner MOD5213. Can anyone share an example how to set up Doze, wait or stop modes? Looks like can't do it...
Hi all, Does anyone know if it would be possible to port a SSH client to Netburner? (dropbear, etc?) Instead of a telnet server, I was hoping to run something...
... I asked this in the (Wildrice) Coldfire mailing list and the answer from Freescale was that it is due to the internal design of the 5213. The maximum...
I have actually done it both ways: I wrote a c#/.net program for an old laptop that I have connected to the NB. The small server relays serial to and from the...
Hello Alex, We do have a development effort going on for SSH. Our policy is not to pre-announce products. As a very rough estimate, it would not be released...
... the ... Hi Larry, your comments helped a lot. I did have the 0x50 and pullups ok, and after some bumbling around, I got the writes to work ok. I fired up...
I am sending data to a web browser from the netburner board and I need it formatted with the thousands separator. I understand you can do this with the C++...
The tools of choice for the netburner platform are the good old (deprecated) standards: printf sprintf scanf sscanf strcpy strncpy etc. etc. These are small...
Hello, There are two ways to correct this: 1. Modify the 'int' fields in \nburn\include\basictypes.h to match stdint.h. This is shown below: //TYPEDEFS needed...
Would anyone please tell me where to find docs on Serial Read/Write operation ? I been trying to configure Port 0 (SB72-EX) as RS-422 bu setting up jumpers but...
Any slick way to get the NNDK help file into the Eclipse help menu (The NetBurner NDK User Manual.chm), a la 1.99 help. Only seems to be help for the IDE none...
NBEclipse 2.1 can't "see" linked folder's files. I have a linked folder for common files in many projects and built fine with 2.0 Updated to 2.1 this morning...
The information on setting up the jumpers are in the users manual. You can download it off their website. Once the port is configured with the jumpers and...
Has anyone tried to build a MODBUS TCP to Serial gateway with the SB72-EX. I've been at it for about a month now with not so great results. I've been...
I orginally used the gcc Make command to compile my code but saw some benifit using NBEclipse since it quickly deployed code automatically. I've previously...