tell me where to go...
2006-02-15 by David Collier
... to discuss AT91SAMx256 type devices David
Yahoo Groups archive
Messages
Page 167 of 307 · 15341 messages matched
2006-02-15 by David Collier
... to discuss AT91SAMx256 type devices David
2006-02-15 by Mike Harrison
On Tue, 14 Feb 2006 23:27:01 -0800 (PST), you wrote: >Hi all, > how can I write and read in/from flash disk memory (USB) dirrectly and without any prepheral chip? Can't do it. CompactFlash or Smartmedia are MUCH easier to control, and can be done with little or no external compon
2006-02-15 by houman
hi everyone, I had a problem about debugging programs in avr studio.I load the obj file created with codevision and run the simulator.I can see the general purpose registers and other registers' value, but the thing is when I drag a variable to watch window it says not in scope.
2006-02-15 by josef mikle
Hi all, how can I write and read in/from flash disk memory (USB) dirrectly and without any prepheral chip? How can I write data as a text file in it? Thank Yahoo! Mail Use Photomail to share photos without annoying attachments.
2006-02-15 by rod_parsons
Hi, Try this one. http://www.lantronix.com/device-networking/embedded-device-servers Then click on either xport or wiport. You can get them from mouser http://www.mouser.com/lantronix/ And select the one you want. It's cheaper to buy a xport approx $50 American and buy a wireless
2006-02-14 by Ned Konz
On Feb 14, 2006, at 8:51 AM, Thomas Keller wrote: > rod_parsons wrote: >> Or try one of these xport is the lan version ( You need an access >> point) http://www.lantronix.com/device-networking/embedded-device- >> servers/xport.html >> or the wireless version http://www.lantronix.
2006-02-14 by Thomas Keller
rod_parsons wrote: > Or try one of these xport is the lan version ( You need an access > point) http://www.lantronix.com/device-networking/embedded-device- > servers/xport.html > or the wireless version http://www.lantronix.com/device- > networking/embedded-device-servers/wiport.
2006-02-14 by Thomas Keller
Ned Konz wrote: > On Feb 13, 2006, at 2:05 PM, Peter Gargano wrote: > Mike Harrison wrote: > >>> This may be worth a look before you re-invent the wheel... >>> http://www.ghielectronics.com/USBwiz.htm >>> I should have mentioned that I have already done a little research and >>>
2006-02-14 by Thomas Keller
Mark Jordan wrote: > Maybe this helps: > > http://groups.yahoo.com/group/airdrop_user/ > >> On Mon, 13 Feb 2006 15:23:41 -0600, you wrote: >> >>> I have a project for which I am going to need at lreast 8.9 Mbps of >>> reliable wireless dta bandwidth. The RF choices appear to be:
2006-02-14 by Mike Harrison
On Tue, 14 Feb 2006 05:45:30 -0000, you wrote: >Or try one of these xport is the lan version ( You need an access >point) http://www.lantronix.com/device-networking/embedded-device- >servers/xport.html >or the wireless version http://www.lantronix.com/device- >networking/embedded
2006-02-14 by Peter Harrison
And there is Duff's device (Google is your friend here) for the more general case where the count is neither 8 bits nor a multiple of 8: count = 256; uint8_t *to = mydata; register int n = (count + 7) / 8; /* count > 0 assumed */ switch (count % 8) { case 0: do { *to++ = PIND; ca
2006-02-14 by Leon Heller
----- Original Message ----- From: "Dave VanHorn" To: Sent: Tuesday, February 14, 2006 4:49 AM Subject: [AVR-Chat] Re: Some help required with SPI on AVR162 and MAX3100 > --- In AVR-Chat@yahoogroups.com, "deonbez2002" wrote: >> >> Does anybody have a experience of how to setup, c
2006-02-14 by rod_parsons
Or try one of these xport is the lan version ( You need an access point) http://www.lantronix.com/device-networking/embedded-device- servers/xport.html or the wireless version http://www.lantronix.com/device- networking/embedded-device-servers/wiport.html We transfer massive amou
2006-02-14 by Dave VanHorn
--- In AVR-Chat@yahoogroups.com, "deonbez2002" wrote: > > Does anybody have a experience of how to setup, connect and transfer > data via an AVR162 SPI connected to a MAX3100. Long ago, 8 of them talking to an 8535. > Can I just transfer two bytes after each other > to satisfy th
2006-02-14 by deonbez2002
Does anybody have a experience of how to setup, connect and transfer data via an AVR162 SPI connected to a MAX3100. From the MAX3100 datasheet it looks like there is always a 16 bit word transfer between the MAX3100 and the connecting device. On the AVR side it supports 8bits onl
2006-02-14 by Ned Konz
On Feb 13, 2006, at 11:31 AM, kernels_nz wrote: > 2. if you had : > > mydata[0] = PIND; > mydata[1] = PIND; > mydata[2] = PIND; > . > . > . > mydata[255] = PIND; > > all written out the hard way like that, it would be slightly faster, > because the "for" loop condition would not
2006-02-14 by Mark Jordan
Maybe this helps: http://groups.yahoo.com/group/airdrop_user/ > On Mon, 13 Feb 2006 15:23:41 -0600, you wrote: > > > > > I have a project for which I am going to need at lreast 8.9 Mbps of > >reliable wireless dta bandwidth. The RF choices appear to be: > > > >a) a cardbus (PCMCI
2006-02-13 by Mike Harrison
On Mon, 13 Feb 2006 15:23:41 -0600, you wrote: > > I have a project for which I am going to need at lreast 8.9 Mbps of >reliable wireless dta bandwidth. The RF choices appear to be: > >a) a cardbus (PCMCIA) 802.11g wireless ethernet NIC, or >b) a wireless USB solution > > Since I
2006-02-13 by Ned Konz
On Feb 13, 2006, at 2:05 PM, Peter Gargano wrote: > Mike Harrison wrote: >> This may be worth a look before you re-invent the wheel... >> http://www.ghielectronics.com/USBwiz.htm > > I should have mentioned that I have already done a little research and > was after a large volume
2006-02-13 by Ned Konz
On Feb 13, 2006, at 9:26 AM, thekenhunt wrote: > I have an application which needs to store 256 bytes of data. My > current (C) solution is way too slow. Could anyone point me to the > fastest way to go about reading a fixe number of bytes into an > array/memory location using as
2006-02-13 by Peter Gargano
Mike Harrison wrote: > This may be worth a look before you re-invent the wheel... > http://www.ghielectronics.com/USBwiz.htm I should have mentioned that I have already done a little research and was after a large volume (ie. non-royalty) solution. I'm also aware of a fair bit of
2006-02-13 by thekenhunt
Ned Many thanks for the feedback. I think 3 cycles/byte is about as good as it gets.. 8o) cheers Ken --- In AVR-Chat@yahoogroups.com, Ned Konz wrote: > > > On Feb 13, 2006, at 9:26 AM, thekenhunt wrote: > > > I have an application which needs to store 256 bytes of data. My > > cu
2006-02-13 by thekenhunt
John Many thanks for the reply - Just tested it out and it works a treat. cheers Ken --- In AVR-Chat@yahoogroups.com, John Samperi wrote: > > At 04:26 AM 14/02/2006, you wrote: > >fastest way to go about reading a fixe number of bytes into an > >array/memory location using assemb
2006-02-13 by Thomas Keller
I have a project for which I am going to need at lreast 8.9 Mbps of reliable wireless dta bandwidth. The RF choices appear to be: a) a cardbus (PCMCIA) 802.11g wireless ethernet NIC, or b) a wireless USB solution Since I canot seem to locate a vendor who sells AT76C712 chips (the
2006-02-13 by John Samperi
At 04:26 AM 14/02/2006, you wrote: >fastest way to go about reading a fixe number of bytes into an >array/memory location using assembler? > >char mydata[256]; >void myloop() > { > for(d=256;d;d--) mydata[d]=PIND; > } ldi xl,low(mydata) ldi xh,high(mydata) ;use x as pointer clr c
2006-02-13 by kernels_nz
Hi Ken, Im a C user myself, so I can only think of 3 possible answers. . . 1. Try using a higher clock speed. 2. if you had : mydata[0] = PIND; mydata[1] = PIND; mydata[2] = PIND; . . . mydata[255] = PIND; all written out the hard way like that, it would be slightly faster, becau
2006-02-13 by thekenhunt
I have an application which needs to store 256 bytes of data. My current (C) solution is way too slow. Could anyone point me to the fastest way to go about reading a fixe number of bytes into an array/memory location using assembler? ie how can I replace the loop below most effic
2006-02-13 by Mike Harrison
On Mon, 13 Feb 2006 12:29:22 +1100, you wrote: >Has anyone used the Cyprus SL811HS to talk to a generic "flash Drive"? > >If not, what about another USB host mode capable chip (must interface >to AVR)? > >I want to talk to someone with experience implementing FAT16 (only >need si
2006-02-13 by Peter Gargano
Has anyone used the Cyprus SL811HS to talk to a generic "flash Drive"? If not, what about another USB host mode capable chip (must interface to AVR)? I want to talk to someone with experience implementing FAT16 (only need single file write) on a USB Flash drive, with a view to th
2006-02-13 by David Kelly
On Feb 12, 2006, at 2:02 PM, kernels_nz wrote: > My question is, what do I do when I want to clock data out of a slave > device (non AVR IC) ? Can I clock 0x00 into the slave device and once > I have clocked the byte out with the Mega as master, read the SPDR > register and this
2006-02-12 by stevech
Here's a good web site from which to get your crack http://www.siia.net/piracy/report/internet_form.asp -----Original Message----- From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On Behalf Of mohsen_zamani1364 Sent: Saturday, February 11, 2006 9:32 PM To: AVR-Cha
2006-02-12 by Gary Skinner
Kanda makes a "one button" programmer - I used it to upgrade tiny26 in the field. Don't know what else it can do. For more money you can get an Equinox FS2000 or 2003 - it can store multiple projects at one time - and is fairly idiot proof > Does anyoe have used a portable progra
2006-02-12 by kernels_nz
Thanks Michael, I have often wanted to try using these cards myself, but could never find any useful information. Cheers Hein B --- In AVR-Chat@yahoogroups.com, Michael De Nil wrote: > > mohsen_zamani1364 wrote: > > >i have problem with mini sd card. The problem is that i dont kn
2006-02-12 by kernels_nz
Hi guys, I must admit I have not tried this, but any suggestions would be appreciated. Using the Mega16 SPI module to send data seems very easy (I have done this) . . . Put your byte in the SPDR register and the processor takes care of clocking this byte out to the selected slave
2006-02-12 by Michael De Nil
mohsen_zamani1364 wrote: >i have problem with mini sd card. The problem is that i dont know how >can we send command to sd card please guide me . > hi mohsen, you can communicate in two ways with a (mini) sd-card: - through spi - through the sd-protocol although the sd-protocol i
2006-02-12 by Richard Reeves
> dear friends > i need iarworkbench compiler cr*ck I wonder if anyone can help me > sincerely yours mohsen zamani Ask these people (but do it nicely): http://www.iar.com/ Richard--- "Iz dana u dan ona dolazi i odlazi u talasima" http://www.van-gogh.co.yu/
2006-02-12 by mohsen_zamani1364
i have problem with mini sd card. The problem is that i dont know how can we send command to sd card please guide me . sincerely yours mohsen zamani
2006-02-12 by mohsen_zamani1364
dear friends i need iarworkbench compiler crack I wonder if anyone can help me sincerely yours mohsen zamani
2006-02-12 by Alexandre Guimaraes
Hi, I have a peculiar problem and some help will be surely welcome. :-) I just had to make a project with one of those "impossible" timeframes and a problem that was "possible" happened.. Now I have about 200 boards with 2 Atmega162's and one atmega8 that I have to reprogram in t
2006-02-11 by stevech
From personal experience, when you order a "hot dog" in English in a German Gästehaus, you will NOT get what your American background expects! Mmmm, gimme some schnitzel!
2006-02-11 by Peter Harrison
llrjt100 wrote: > I'm new to the group and wondering whether or not I can microstep with > the Active-Robots Easy Step 1000 board (http://www.active- > robots.com/products/motorcon/active-stepper.shtml) and BASCOM AVR on a > Mega32. > It does not look like a practical proposition
2006-02-11 by llrjt100
Is it possible to switch 2 PWM timers between the four control lines? --- In AVR-Chat@yahoogroups.com, Peter Harrison wrote: > > llrjt100 wrote: > > I'm new to the group and wondering whether or not I can microstep with > > the Active-Robots Easy Step 1000 board (http://www.activ
2006-02-11 by Stefan Wimmer
Hi folks, ...thought some of you want to admire my latest small tool: the µBrain88. ;-)) A small PCB for ATmega8/48/88/168 to use in small and one-shot projects. See: http://www.geocities.com/_wsw_/avr.html Enjoy, Stefan
2006-02-10 by llrjt100
I'm new to BASCOM AVR and microcontrollers and using a Mega32 to drive an Active-Robots EasyStep 1000 (http://www.active- robots.com/products/motorcon/active-stepper.shtml) stepper driver in full and half step modes. Is it possible to microstep this board and if so does anyone ha
2006-02-10 by llrjt100
I'm new to the group and wondering whether or not I can microstep with the Active-Robots Easy Step 1000 board (http://www.active- robots.com/products/motorcon/active-stepper.shtml) and BASCOM AVR on a Mega32. If its possible, I would be very grateful for any code snippets as I'm
2006-02-10 by Lauer, Thilo
> Whenever I take a holiday there, not only am I > amused(*) by their abuse of the English language, Ok, that argument works both ways, though. I usually listen to the local american forces radio station located in Frankfurt when driving to/from work. And i really enjoy their tra
2006-02-10 by stevech
Ah yes, the dual-address space. GCC (WinAVR) doesn't do well with this either. The AVR-focused C compilers have good pragmas for this. -----Original Message----- From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On Behalf Of Don Ingram Sent: Thursday, February 09,
2006-02-10 by Don Ingram
stevech wrote: > I'd like to fiddle (in my avocation) with Forth (compiled or byte-code), but > I didn't see a free or dirt cheap Forth product for AVRs. > > There are a few free Forths around for AVR's. The benefits of Forth tend to dry up a bit with AVR's as you can't interacti
2006-02-10 by stevech
I'd like to fiddle (in my avocation) with Forth (compiled or byte-code), but I didn't see a free or dirt cheap Forth product for AVRs.
2006-02-10 by Don Ingram
stevech@san.rr.com wrote: > Hopefully your language of choice, in an industrial setting, will be > easy for your successor to deal with (and YOU, 2 years hence), and if > non-standard, from a supplier who exists at that time! Today, that > knocks it down to asm and C, eh? > > Or