Search the web
Sign In
New User? Sign Up
netburner_group · NetBurner - Embedded Ethernet
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 988 - 1018 of 6234   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
988
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...
tod_syncor
Offline
Dec 2, 2005
11:41 pm
989
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...
etc_passwd2001
Offline Send Email
Dec 3, 2005
7:28 pm
990
... 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...
strohs56k
Offline Send Email
Dec 4, 2005
10:00 am
992
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...
etc_passwd2001
Offline Send Email
Dec 4, 2005
11:49 am
993
... Presumably the carrier board is a "generic" part that is sold with several different Netburner CPU modules. (5270, 5272, 5282) These CPU modules have...
strohs56k
Offline Send Email
Dec 4, 2005
9:41 pm
994
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 Breed
pbreed
Offline Send Email
Dec 6, 2005
2:50 am
995
Paul, Can you please explain (briefly) what the limitations would be of only having object code. Thanks, Michael. ... a ... MOD5213 ... into ... should...
mmk_tsm
Offline Send Email
Dec 6, 2005
9:53 am
996
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...
mmk_tsm
Offline Send Email
Dec 6, 2005
9:59 am
997
... You can do anything with it that you can do with source except modify the source. Paul...
Paul Breed
pbreed
Offline Send Email
Dec 6, 2005
5:16 pm
998
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...
Kevin McCall
kevin_d_mccall
Offline Send Email
Dec 6, 2005
5:35 pm
999
I have an intermittent problem loosing bytes from the FTP server. I am using Internet Explorer / Mozilla Firefox as the FTP client. In the...
Jones, Michael J.
mjj_panda
Offline Send Email
Dec 6, 2005
6:41 pm
1000
... 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...
strohs56k
Offline Send Email
Dec 7, 2005
12:08 am
1001
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...
mmk_tsm
Offline Send Email
Dec 7, 2005
11:03 am
1002
How do I write assembly code in DevC. I'm looking for correct syntax. A simple move example would be really helpful. Thanks Matt...
matt_koebel
Offline Send Email
Dec 7, 2005
2:28 pm
1003
Matt, Here is a simple example: { asm(" move.l #180000, %a0"); asm("PIFLOOP:"); asm(" move.w (a0), %d0"); asm(" btst #2, %d0"); //bit b2 = PIF. asm("...
mmk_tsm
Offline Send Email
Dec 7, 2005
4:45 pm
1004
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...
Paul Breed
pbreed
Offline Send Email
Dec 7, 2005
7:08 pm
1005
Several examples... Look in nburn\system\ucosmcfa.s for a pure assembly language example. Using inline assembly... ... suppose you have a global static...
Paul Breed
pbreed
Offline Send Email
Dec 7, 2005
8:20 pm
1006
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...
Kevin McCall
kevin_d_mccall
Offline Send Email
Dec 8, 2005
10:22 pm
1007
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. ...
Paul Breed
pbreed
Offline Send Email
Dec 8, 2005
10:40 pm
1008
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...
tod_syncor
Offline
Dec 10, 2005
12:40 am
1009
I left out "Network Development Kit" so the registry path is HLM Software Netburner Network Development Kit <---- NBURN_ROOT_LOCATION...
tod_syncor
Offline
Dec 10, 2005
12:56 am
1010
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_koebel
Offline Send Email
Dec 11, 2005
9:47 pm
1011
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. ...
mmk_tsm
Offline Send Email
Dec 11, 2005
10:34 pm
1012
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...
vikassathaye
Online Now Send Email
Dec 12, 2005
3:22 am
1013
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...
Paul Breed
pbreed
Offline Send Email
Dec 12, 2005
6:03 pm
1014
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...
tod_syncor
Offline
Dec 12, 2005
10:32 pm
1015
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...
Paul Breed
pbreed
Offline Send Email
Dec 13, 2005
12:36 am
1016
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...
Paul Breed
pbreed
Offline Send Email
Dec 13, 2005
12:41 am
1017
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...
inaganti_suni
Offline Send Email
Dec 13, 2005
12:39 pm
1018
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...
tod_syncor
Offline
Dec 14, 2005
1:23 am
Messages 988 - 1018 of 6234   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help