I have multiple versions of Netburner installed on my development machine from version 1.81 to 1.98. I have a folder named c:\nburn and c:\nburn181. I work...
Hello, I've run into trouble while trying to use the GPIO. I assumed that the hole with names GPTA0,1,2,3 on the carrier board are GPIO 0-3 of PORTA, but no...
... Looking at the carrier board schematic (see nburn/docs/platform/mod5272.chm), it seems that the GPIO header pins GPTA0,1,2,3 connect to pins 23,19,17,15...
Thank you very much your help, I've been able to do download a new program to my board, the key was to use "send text file" instead of just "send file" as you...
... Presumably the carrier board is a "generic" part that is sold with several different Netburner CPU modules. (5270, 5272, 5282) These CPU modules have...
Netburner has negotiated a license with HCC embedded to give all of our customers access to their FAT file system products. This will be a no cost option for...
Paul, Can you please explain (briefly) what the limitations would be of only having object code. Thanks, Michael. ... a ... MOD5213 ... into ... should...
Hello everyone, A general question regarding debugging. I am new to the Netburner product and am only at the hardware debug stage of a new design. I have...
I have managed to successfully debug a very large NetBurner application using only the serial debugger (once when pressed really hard) and iprintf. Although I...
... Paul, Am I correct in assuming this means the object code will only work for designs that implement a CF slot equivalent to that of the Netburner WiFi...
Seth, I am in exactly the same boat as you - I have designed a CF interface using memory mode, i.e. 8 bits etc. At this stage, I would be interested in getting...
There is an abstraction layer. If you download the release look at mmc_mcf.c and cfc_mem_nburn.c in the platform directory for the platform of interest...
Several examples... Look in nburn\system\ucosmcfa.s for a pure assembly language example. Using inline assembly... ... suppose you have a global static...
Compact Flash FAT file system... download the release... 5282... Where is it? No seriously, I did some work a while ago for a project where we were looking at...
My earlier Mail on the subject... Netburner has negotiated a license with HCC embedded to give all of our customers access to their FAT file system products. ...
Well I believe I figured this out. I had even more problems when I started experimenting with the Dev-C++ IDE, it was also running MAKE from the wrong...
I used the following code using MS Visual C++ to add a control byte to a data byte to generate a 16 bit word. I am having a hard time figuring out how to...
Matt, Somehting like this should work; WORD nTemp = control; nTemp <<= 8; //shift control to m.s. 8 bits. nTemp |= data; // assuming data is l.s. byte. ...
Hi, We are using the NetBurner Mod5270 ver 1.2 to convert sonar data to TCP/IP packet. Netburner Module collects this sonar data on 32bit data bus using DMA...
I just answered this same question on a support ticket, but this is a good question to for the group. Using the standard network socket interface and using...
What good timing you have. I just finished a slew of tests on this last week using a 5272. A few months back I did some UDP tests on the 5270. Looking back at...
No copy mode. The basics of No copy mode... Instead of using write or writeall to copy from your buffer to a intermediate buffer, then from there to the...
Tod, Try the following without changing anything in your TCP test and see if speed improves. 1)in nburn\include\constants.h change BUFFER_POOL_SIZE to 256 or...
hi, I am using Port C as output port. I am connecting the output signal to some hardware board through a differential driver 26LS31, RS422 port and 26LS32. But...
Paul, OK, I changed the code per your instructions. Here are the results: Sending a 4K packet had almost no change, both approx. 14.1 Mbits/sec. Sending an 8K...