Forum Menu




 


Log in Problems?
New User? Sign Up!
AVR Freaks Forum Index

Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
jimlake
PostPosted: May 10, 2012 - 12:01 AM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

I am cribbing from a design that uses a PIC, I would like to substitute the PIC16F684 with an AVR. Any opinions on which AVR is likely to be the closest in terms of capabilities, pins, ports, power consumption?
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
bobgardner
PostPosted: May 10, 2012 - 12:12 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

Well, how many pins and ports does it have, and whats its power consumption? Seems like speed, ram, rom and price would be more important.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
jimlake
PostPosted: May 10, 2012 - 12:40 AM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

OK I admit I didn't want to look at the Atmel web site. I hoped someone might know.

220uA at 4Mhz, 14pin package, 2048flash, 128 SRAM, 256 EEPROM, about a buck and 1/2.
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
ka7ehk
PostPosted: May 10, 2012 - 01:29 AM
10k+ Postman


Joined: Nov 22, 2002
Posts: 12055
Location: Tangent, OR, USA

Does it need to be DIP?

If you need minimum physical size (14 pin DIP), it will have to be a Tiny.

Jim

_________________
Jim Wagner
Oregon Research Electronics, Consulting Div.
Tangent, OR, USA

"The only thing standing between us and victory is defeat" P.G.Wodhouse in Wooster & Jeeves series
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 10, 2012 - 02:00 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

Now you have to put an importance coefficient on pins, speed, flash, ram, power, price. What if there is an AVR with 20 pins, but has more flash, more speed, more ram, more price? If the pic has most of the 2k flash used, a 4k AVR might be better. At this level, we need to look at stuff like timers (8 bit? 16 bit), uart, spi, twi etc. Pic guys used to do a lot of bitbanged spi and uarts. Price is everything in the 100K quantities I guess.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
gahelton
PostPosted: May 10, 2012 - 04:04 AM
Resident


Joined: Mar 19, 2003
Posts: 736


Your closest match from Atmel is an ATTINY24V. Both have 2K flash and 128 bytes SRAM. The PIC has 256 bytes of EEPROM while the TINY24 has 128 bytes of EEPROM.

Both have timers, 10 bit A/D converter, and analog comparator. Also, they have the same number of I/O. The AVR has a Universal Serial Interface whereas the PIC has no serial communications module.

Power usage: Be careful reading the "tag lines"
------------------------------------------------
Conditions for both processors:
Temp = 25C
Vdd = 3V
"CORE SPEED" (not clock speed) = 1MHZ
Clock Source = Internal Oscillator
All peripherals ON

PIC16F684 = 580uA (See fig 16-12 of datasheet)
ATTINY24V = 504uA (Fully compensated value, see below)
(For Atmel, See fig 21-1 of datasheet. Note, this chart is for all peripherals turned OFF. Must add in voltage compensated current draws from Table 21-1 when peripherals are turned ON. Must also adjust Core current draw from fig 21-1 to compensate for 3V Vdd)

Notice "CORE SPEED" parameter above. To get a 1MHZ core speed from the PIC, it must be clocked at 4MHZ since each instruction cycle is 4 oscillator clock cycles. For the Atmel AVR, each oscillator clock cycle is an instruction clock cycle. Therefore, to get a 1MHZ core speed from the AVR, the oscillator is run at 1MHZ.

Cost from Digi-Key @ 100pc Qty
SOIC14 package for both
------------------------------
PIC16F684-I/SL $1.13
ATTINY24V-10SSU $1.34

Hope this helps in your evaluation.
 
 View user's profile Send private message  
Reply with quote Back to top
jimlake
PostPosted: May 10, 2012 - 05:08 AM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

It did. Thanks a lot.

Jim
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
stevech
PostPosted: May 10, 2012 - 05:35 AM
Raving lunatic


Joined: Dec 18, 2001
Posts: 4717


gahelton wrote:

Notice "CORE SPEED" parameter above. To get a 1MHZ core speed from the PIC, it must be clocked at 4MHZ since each instruction cycle is 4 oscillator clock cycles. For the Atmel AVR, each oscillator clock cycle is an instruction clock cycle. Therefore, to get a 1MHZ core speed from the AVR, the oscillator is run at 1MHZ.
Noteworthy - as power consumption is governed by the clocking!!
PIC's architecture is really old.
 
 View user's profile Send private message  
Reply with quote Back to top
theusch
PostPosted: May 10, 2012 - 02:05 PM
10k+ Postman


Joined: Feb 19, 2001
Posts: 25923
Location: Wisconsin USA

If you are only doing a few and size isn't paramount (how could it be if a DIP design?), then I'd recommend the Mega88 family. Mega48 is about $1.25 at 100 pieces.
 
 View user's profile Send private message  
Reply with quote Back to top
jimlake
PostPosted: May 11, 2012 - 07:13 PM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

I have had a chance to review the way the PIC was used in the design, and I find that the tiny24A is a more than acceptable replacement. It turns out that the PIC was using a bit banged i2c. The SPI in the tiny will do that job nicely. The price is good too...$0.61 for the tiny24A. Price is a big driver, but I can get the tiny84A for $.89

As far as footprint goes, I really need the small size so the QFN package is perfect.
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
bobgardner
PostPosted: May 11, 2012 - 07:14 PM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

Yo Jim... did you mean TWI instead of SPI?

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
larryvc
PostPosted: May 11, 2012 - 07:25 PM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

Yo Bob... did you mean USI instead of TWI? Wink

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 11, 2012 - 07:45 PM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

I guess. I didn't realize that was 'either' till recently.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
jimlake
PostPosted: May 11, 2012 - 11:25 PM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

This is a problem, though. I too realized a while ago that the SPI was really a USI. But, I really need the full functionality of the SPI. So I am back to looking at the mega48 or back to bit banging something. I really didn't want to do that. The M48 will work (it has to work with a Nordic nRF2560, which can accommodate either a SPI or an i2c). The problem is price. The M48 is 1.26 and the Tiny is .61 USD. So, to do it my way, it looks like I need the M48. I guess I now see why the guys at Nordic Semi chose to bit bang the PIC.

Power wise, with the M48, it looks like I can keep the running current at 1MHz to 400-500uA.
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
bobgardner
PostPosted: May 12, 2012 - 12:16 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

I guess I called it right. See my msg from May 9 where I said there are a lot of bitbanged peripherals in pic programs? Whats the full IO count? Does the avr version have to be faster? cheaper? more features? All three? I think you can do a bitbanged spi and a bit banged twi on an avr at 20mhz a lot faster than on a pic at 4mhz. I have a program here that measures bit banged spi thruput and it is about half of the double speed hw spi thruput for writes, so in the case of writing tp the spi, the hw doesnt give you much help. You either run thru the loop toggling the data and clk 8 times, or you sit and wait for the spif flag. Both take about a microsecond. 8megabits, 1megabyte thruput.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
stevech
PostPosted: May 12, 2012 - 03:13 AM
Raving lunatic


Joined: Dec 18, 2001
Posts: 4717


Why bit-bang SPI when all but the crude micros have hardware SPI?
 
 View user's profile Send private message  
Reply with quote Back to top
larryvc
PostPosted: May 12, 2012 - 03:41 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

bobgardner wrote:
I guess I called it right. See my msg from May 9 where I said there are a lot of bitbanged peripherals in pic programs? Whats the full IO count? Does the avr version have to be faster? cheaper? more features? All three? I think you can do a bitbanged spi and a bit banged twi on an avr at 20mhz a lot faster than on a pic at 4mhz. I have a program here that measures bit banged spi thruput and it is about half of the double speed hw spi thruput for writes, so in the case of writing tp the spi, the hw doesnt give you much help. You either run thru the loop toggling the data and clk 8 times, or you sit and wait for the spif flag. Both take about a microsecond. 8megabits, 1megabyte thruput.

Bob, have you an "Enter" key on your keyboard?

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
valusoft
PostPosted: May 12, 2012 - 04:39 AM
Raving lunatic


Joined: Jul 02, 2005
Posts: 5951
Location: Melbourne, Australia

What? ... and break his train of thought ...

_________________
Ross McKenzie
ValuSoft
Melbourne Australia
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 12, 2012 - 05:13 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

I used to log on to the TBBS bulletin boards in Orlando in the early 80s. Whenever I entered a hard carriage return in a message the sysop would chew me out for messing up the TBBS message formatting software, which was formatting the line width to match the display. Since I am an Only Child, I probably have a desire to Not Make Waves and do what my elders tell me, so I learned to let the forum software wrap the lines. This seems to work correctly in this forum software also. Are you now telling me that the carbon based units can format the messages better than the forum software writers? Should the moderators issue a warning that all messages that dont have a carriage return at 80 chars will have their login disabled? What if you have one of those newfangled movie screens with a 16x9 aspect ratio and the 80 column messages dont get all the way to the right side of the screen? Would you bitch about that too? Just get a life how bout?

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
larryvc
PostPosted: May 12, 2012 - 06:06 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

Yes. No. What if. Yes. I have one. The only reason that I mentioned it is that you, as well as me, are getting older and it has become, for me anyway, harder to read print that has been written as though there is not enough bandwidth on the internet to handle the extra white space that could, and would, make it so much easier to figure out what it is this time that you are trying say. It seems that you have this preconceived notion that things are like they were 30 years ago. It is time to embrace this century with an open mind, don't you think? This has nothing to do with the forum software formatting, or wrapping, the text that you have entered. It seems more like a lazy attitude that you have become accustomed to and it would be nice to see a few carraige returns in your posts. You have a lot of experience to share and I appreciate your input on this forum and I have learned from it. It is just so hard to read.

I feel better now. I hope you do too. Very Happy

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
gahelton
PostPosted: May 12, 2012 - 02:43 PM
Resident


Joined: Mar 19, 2003
Posts: 736


The ATTINY2313 comes real close to meeting your needs for hardware I2C(TWI) and SPI - also very low cost. However, even though this processor supports both of these functions with separate sets of hardware using the USI and UART respectively, they share the same pins. This is unfortunate.

The next stop for hardware TWI and SPI is the ATMEGA48 which you believe to be too costly.

Looks like bit banging is in your future. However, don't fret. Bit banging an SPI in master mode is extremely simple and fast.
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 12, 2012 - 02:56 PM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

Finally. For once, someone else on this stoopid forum has the sense to just type in the message to fill the screen with automattically wrapped text. It looks so warm and familiar. It made my morning.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
larryvc
PostPosted: May 12, 2012 - 04:57 PM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

Oh, thank you. I thought you would like that. Wink

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
larryvc
PostPosted: May 13, 2012 - 04:32 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

Jim,

Im sure there are many other demos for SPI and usi but I came across this one on the net. I tried the Master-Slave code and it works great. I plan on trying the ATtiny2313 USI as Master code next.

http://www.jaxcoder.com/Projects.aspx?id=280385176

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
flenser
PostPosted: May 14, 2012 - 12:34 PM
Newbie


Joined: Sep 29, 2009
Posts: 16


Jimlake,

Not only is there a core speed difference between the PIC & Atmel products but the words are different bit lengths.

PIC16F684 has 2k words flash, which is actually 3.5k bytes because of a 14-bit word length.

Atmel's Attiny processors have a 16-bit word length so the attiny24 & attiny2313 processors will have only 1k words flash (2kB), the attiny44 2k words flash (4kB) and the attiny84 4k words flash (8kB).

Flenser
 
 View user's profile Send private message  
Reply with quote Back to top
jimlake
PostPosted: May 15, 2012 - 03:02 AM
Hangaround


Joined: Aug 05, 2005
Posts: 267
Location: Tacoma, WA

To address Steve's question, it appears that most of the small 8 bitters do not have a SPI, the AVR's, at least, have a USI. None of them have a i2c.

It looks to me like the difference between the SPI and the USI is the lack of MISO. This can be a bit of a pita if the other device is expecting a full HW SPI. I have decided to resolve this by using a Mega48. In the VQFN package, it is very small, but it does cost more than the Tiny.
 
 View user's profile Send private message Send e-mail  
Reply with quote Back to top
barnacle
PostPosted: May 15, 2012 - 06:35 AM
Raving lunatic


Joined: Jan 03, 2006
Posts: 4417
Location: Hemel Hemsptead, UK

As a master, SPI is easier to generate than I2C which is basically an abomination of a protocol. Having to change the direction of both the clock and data line in I2C to manage the three-state and clock stretching parts is a pain, and the PIC's inability properly to implement read/modify/write when a port is driving a capacitive load is extremely annoying.

There are PICS in the 18F series (next size up basically - twenty-eight pins or more) that have UART, SPI, and I2C but the implementation on the ones I examined meant that you could use only one of the three at a time, and the distribution of pins was such that even the inputs and outputs didn't match so it would be very tricky to change between them programatically.

_________________
Neil Barnes
www.nailed-barnacle.co.uk
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
stevech
PostPosted: May 15, 2012 - 06:36 AM
Raving lunatic


Joined: Dec 18, 2001
Posts: 4717


All relative I suppose. To me, the mega32 is "small", in that RAM size tends to limit what you can do.

indeed, there are many 2KB code apps. I just don't often do that kind.
 
 View user's profile Send private message  
Reply with quote Back to top
snigelen
PostPosted: May 15, 2012 - 08:51 AM
Posting Freak


Joined: Jan 08, 2009
Posts: 1160
Location: Lund, Sweden

The tiny48/88 do have both SPI and I2C (but no usart Sad).
 
 View user's profile Send private message  
Reply with quote Back to top
MBedder
PostPosted: May 15, 2012 - 09:15 AM
Raving lunatic


Joined: Nov 02, 2009
Posts: 3239
Location: Zelenograd, Russia

The Tiny1634 has 2 UARTS, 2 I2C, SPI (via UART/USI), ADC etc. in a 20 pin package.
 
 View user's profile Send private message  
Reply with quote Back to top
lfmorrison
PostPosted: May 15, 2012 - 12:43 PM
Raving lunatic


Joined: Dec 08, 2004
Posts: 4719
Location: Nova Scotia, Canada

MBedder wrote:
The Tiny1634 has 2 UARTS, 2 I2C, SPI (via UART/USI), ADC etc. in a 20 pin package.

And no inventory from any of Atmel's preferred distributors.
 
 View user's profile Send private message  
Reply with quote Back to top
lfmorrison
PostPosted: May 15, 2012 - 12:53 PM
Raving lunatic


Joined: Dec 08, 2004
Posts: 4719
Location: Nova Scotia, Canada

jimlake wrote:
To address Steve's question, it appears that most of the small 8 bitters do not have a SPI, the AVR's, at least, have a USI. None of them have a i2c.

It looks to me like the difference between the SPI and the USI is the lack of MISO. This can be a bit of a pita if the other device is expecting a full HW SPI. I have decided to resolve this by using a Mega48. In the VQFN package, it is very small, but it does cost more than the Tiny.


What exactly do you mean by "no MISO"?

The USI uses DI (MISO for Master systems, MOSI for Slave systems), DO (MOSI for Master systems, MISO for Slave systems), and USCK (SCLK output for Master systems, SCLK input for Slave systems).

It does not have hardware slave select - but for a SPI master, that's a fairly easy limitation to work around.

It is designed to do SPI modes 0 and 1; apparently it's not suited to modes 2 or 3.

Section 14.3.2 of the ATtiny24 datasheet shows an assembly function for USI operating in 3-wire Master mode, that accepts the desired output byte to be sent to the slave via DO as an argument, and returns the read-back value from DI.

Section 14.3.3 demonstrates using the USI in 3-wire Slave mode.
 
 View user's profile Send private message  
Reply with quote Back to top
theusch
PostPosted: May 15, 2012 - 02:43 PM
10k+ Postman


Joined: Feb 19, 2001
Posts: 25923
Location: Wisconsin USA

Quote:

The Tiny1634 has 2 UARTS, 2 I2C, SPI (via UART/USI), ADC etc. in a 20 pin package.


Wow--where did THAT model come from?
 
 View user's profile Send private message  
Reply with quote Back to top
clawson
PostPosted: May 15, 2012 - 02:45 PM
10k+ Postman


Joined: Jul 18, 2005
Posts: 62361
Location: (using avr-gcc in) Finchingfield, Essex, England

Quote:

Wow--where did THAT model come from?

+1

Is there anything else "lurking"? I imagine the device support list in the recently released final AS6 might be a good place to look for "new meat"?

_________________
 
 View user's profile Send private message  
Reply with quote Back to top
theusch
PostPosted: May 15, 2012 - 02:48 PM
10k+ Postman


Joined: Feb 19, 2001
Posts: 25923
Location: Wisconsin USA

Quote:

And no inventory from any of Atmel's preferred distributors.


How can you say that, when Atmel's press release from March says
Quote:
All AVR ATtiny1634 devices are available now...
Twisted Evil
 
 View user's profile Send private message  
Reply with quote Back to top
gchapman
PostPosted: May 15, 2012 - 06:49 PM
Posting Freak


Joined: Jan 09, 2007
Posts: 1877
Location: Arlington, Texas, U.S.A.

theusch wrote:
Wow--where did THAT model come from?
What's Changed.
Thank you Atmel!
 
 View user's profile Send private message  
Reply with quote Back to top
MBedder
PostPosted: May 15, 2012 - 06:54 PM
Raving lunatic


Joined: Nov 02, 2009
Posts: 3239
Location: Zelenograd, Russia

gchapman wrote:
Thank you Atmel!
...for yet another vaporware chip Laughing
 
 View user's profile Send private message  
Reply with quote Back to top
gahelton
PostPosted: May 16, 2012 - 12:00 AM
Resident


Joined: Mar 19, 2003
Posts: 736


Mouser is showing a delivery date of 7/6/2012 for the ATTINY1634. This looks like a really nice part for less than $1.00.
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 16, 2012 - 12:30 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

So someone wanted an avr with those specs, and placed an advance order for a couple million or whatever the R&D deal was, and the distributers get what overflows into the supply chain after the initial run to the initial customer is fulfilled? How does the distribution model work? If they can deliver in 2 months after the product announcement, they must be building up stock. Any old semiconductor retiress out there that want to give some insight how it really works?

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
bobgardner
PostPosted: May 16, 2012 - 12:35 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

On a similar theoretical semiconductor question... would an AVR with dual CPUs get anyone excited? Seems like if you consider yourself an Expert AVR programmer, the idea of being able to write two programs/tasks and get double thruput is a win. Digital filters, etc. If anyone from Atmel reads this and forwards it to the VP of Good Ideas Submitted from the AVRfreaks, just add a PS that this one is a stockholder.

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
westfw
PostPosted: May 16, 2012 - 01:36 AM
Resident


Joined: Jun 19, 2002
Posts: 957
Location: SF Bay area

I don't think that the idea of multi-core microcontrollers makes much sense, outside of particular assymetric applications that amount to "smart peripherals" (some of the XMEGA stuff, Freescales "Time Processing Unit", etc.) Multicore is where you go after you hit the limits of process speed and power dissipation, and microcontrollers are almost by definition limited by other factors.
You can always stick two AVR on the same PCB. Smile
 
 View user's profile Send private message  
Reply with quote Back to top
larryvc
PostPosted: May 16, 2012 - 02:56 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

Bob,

Did you ever see this post.

http://www.avrfreaks.net/index.php?name ... 106#842106

Go ahead, accuse me of heresy.

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
toalan
PostPosted: May 16, 2012 - 04:23 AM
Posting Freak


Joined: Jul 21, 2005
Posts: 1373


Regarding multicore AVR, AVR fills a niche I think that niche is smooth and easy development it certainly is not computational horsepower and anything that makes the development cycle harder (I am guessing having another core would increase the complexity) would be detrimental to AVR.

OP if you can afford it, stick with the 48/88/168/xx8 series. It is the best value AVR on the market, you get alot more peripherals for the extra money.

If money is the primary factor then freescale has 8 bitters priced around 50 cents in 100pc quantity.

Sticking with PIC is not a horrible option, their plain vanilla 8 bit stuff is atleast cheapish though is quite slow when it comes to the core. The redeeming thing about PIC is that they have lots of peripheral options, and arguably they have a wider upgrade path than AVR.
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 16, 2012 - 04:28 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

I'm sort of in Awe of the consultant level dudes that can switch from one computer and language to another. I'm so old and stupid that I want to stick with What I Know to try and get stuff done. If the only tool you have is a hammer, every job looks like a nail. My tool is an AVR, and I'll try and use that unless it so glaringly obvious that it is about a factor of 10 too slow. However, I have duly taken notice of your out of hand Dissing of my dual core AVR idea. Wont you be embarassed if some Atmel guy thinks its a great idea? (I've already bought my Lotto tickets for Wednesday's drawing).

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
toalan
PostPosted: May 16, 2012 - 05:24 AM
Posting Freak


Joined: Jul 21, 2005
Posts: 1373


I meant no disrespect bob, it is just my opinion.
 
 View user's profile Send private message  
Reply with quote Back to top
larryvc
PostPosted: May 16, 2012 - 05:25 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

I was never "Dissing" your idea. I actually like trying new chips and a dual core AVR would be cool.

I really like the ATtiny1634 specs. Have to get out my electric frying pan for that one.

Funny, I bought lotto tickets too.

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
bobgardner
PostPosted: May 16, 2012 - 06:10 AM
10k+ Postman


Joined: Sep 04, 2002
Posts: 21273
Location: Orlando Florida

Well, I was kidding about being DisRespected. I'm glad you guys considered my idea. What if a couple of the several 1000s of AVRfreaks really came up with a good product suggestion/idea for Atmel? What if one of the Atmel Staff Engineers comes up with a New Product idea? How do the ideas get considered? So guy with a 6 figure salary just goes with his gut feel, or is an idea quantifiable somehow? (Darn marketing dudes outght to earn their money somehow).

_________________
Imagecraft compiler user
 
 View user's profile Send private message Send e-mail Visit poster's website 
Reply with quote Back to top
wek
PostPosted: May 16, 2012 - 07:49 AM
Raving lunatic


Joined: Dec 16, 2005
Posts: 3089
Location: Bratislava, Slovakia

The road to the silicon hell is paved with chips which came out of the best ideas.

FPSLIC, anyone?

JW
 
 View user's profile Send private message Visit poster's website 
Reply with quote Back to top
larryvc
PostPosted: May 16, 2012 - 08:22 AM
Raving lunatic


Joined: Dec 06, 2007
Posts: 2512
Location: Redmond, WA USA

wek wrote:
FPSLIC, anyone?

JW

Sure.

http://hackaday.com/2010/08/19/fpslic-p ... ed-matrix/

_________________
Larry

Those afraid to embrace the future will quickly fade into the past. - larryvc
 
 View user's profile Send private message  
Reply with quote Back to top
clawson
PostPosted: May 16, 2012 - 10:00 AM
10k+ Postman


Joined: Jul 18, 2005
Posts: 62361
Location: (using avr-gcc in) Finchingfield, Essex, England

Quote:

and get double thruput is a win

Why wouldn't you just get a 50Mhz or 100MHz or 120MHz (or whatever) ARM? Multi-CPU are only needed at the very top end where you reach the limit of the silicon and still need to go faster. Or perhaps when you have a specific job that lends itself to parallelism - like pixel processing in a GPU.
Quote:

What's Changed.
Thank you Atmel!

Interesting page. I read that tiny43U model number and thought "interesting - small package USB chips now" but as far as I can see the U (unlike most other AVR model numbers) does not have any relation to USB. Nothing like keeping the numbers consistent!

_________________
 
 View user's profile Send private message  
Reply with quote Back to top
wek
PostPosted: May 16, 2012 - 10:07 AM
Raving lunatic


Joined: Dec 16, 2005
Posts: 3089
Location: Bratislava, Slovakia

Oh, nice, but one-off. And even that after the FPSLIC were pronounced officially dead...

http://www.atmel.com/about/quality/obso ... hText=at94

Try to look up Triscend for the same great idea ('cos the idea *is* great). Or Zylogic, for that matter.

JW
 
 View user's profile Send private message Visit poster's website 
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT + 1 Hour
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2006 The PNphpBB Group
Credits