Live data from Hacker News

Microchip to Acquire Atmel for $3.56B

hackaday.com

11–20 of 32 posts

Re: Microchip to Acquire Atmel for $3.56B

#11
post #9

Anyone know why the Dialog from back in September deal fell through?

Not sure if we're able to give specifics, but maybe if the overall offers weren't too different in overall value Microchip offered more cash over stock? The only previous story I read about this is here, which isn't too informative http://www.theregister.co.uk/2016/01/15/microchip_atmel/

Re: Microchip to Acquire Atmel for $3.56B

#12
post #7

Noooo. Damn. Really loved Ateml's IDE. Microchip always charged for their IDE/compiler and I never felt like it was quite as nice to use.

RIP Atmel Studios... I can only imagine how this is going to affect choosing a microcontroller in the future. When I was in school, PIC vs AVR was often debated. I also really liked the selection of ARM Cortex-M parts that Atmel offered. I can only hope that the good parts of Atmel remain into the future.

Honestly I'll probably move to Cypress' PSoC. They're pretty nice if a tad expensive and the IDE is quite solid. Their BT devkit is quite nice.

Re: Microchip to Acquire Atmel for $3.56B

#13
post #6
post #2

While Atmel MCUs are nice and robust (especially avr-gcc and avr-libc are great advantages) they seen like quite high cost. Cheaper ARMs probably are eating their lunch. Meanwhile, I've never been friends with the microchip Dev tools. Clunky, expensive, proprietary. Here's hoping we'll get AVR ergonomics and PIC economics... But it might be too late to matter. Cortex-M0 eats the low end, M4 the mid end, and the phone…

Well there still is a case for the AVR -- you get zero pipelining effects, no flash latency etc; it's like a tiny, slow, scalar CPLD for all intent and purpose. Cortex can't beat that, you can tight loop an AVR to cycle precision and get pretty cool return for your running frequency; the Cortex are nowhere as linear. [0] Altho, I agree that the bigger parts are useless... xmegas and such have absolutely no reason to…

People care about time, not cycles, and chances are with whatever crystal is running your AVR, you will still not be comfortable despite the lack of post-1990 CPU features in ATmegas.

And finally, the idea of tight loops engineered to cycle precision is dying a slow death in general. You just smother the hard timing requirements with excess frequency and performance.

Curious thing about the ESP8266: it doesn't use ARM or any of the other popular kids on the block but a Tensilica Xtensa architecture.

Re: Microchip to Acquire Atmel for $3.56B

#14
post #8
post #5

Earlier quoted context omitted.

The low end is something like the PIC 10F family, when compared to the Cortex-M0 its about a tenth the cost and a fiftieth the power consumed. Lighting an LED takes 100x the power of running a 10F series at full speed. I can buy some 10F series PICs cheaper than a 555 timer chip, which is pretty amazing.

> The low end is something like the PIC 10F family, when compared to the Cortex-M0 its about a tenth the cost and a fiftieth the power consumed I don't really believe either of those claims. At 1ku quantity on Digikey (which admittedly is not the cheapest vendor) cheapest Cortex-M0 chips cost $0.378 and low-power chips (NXP KL03) start from $0.504. That aforementioned KL03 is advertised to run at 50 µA/MHz. Meanwhile…

Several of the PIC models have a low power mode where they run off an internal RC circuit somewhere in the KHz range. Just enough to wake up on an interrupt or some external stimuli and really pushes their power usage way down.

For a PIC10KF320/322 you're looking at:

Sleep: 20nA, 1.8V Operating: 25uA @ 1Mhz, 1.8V Watchdog Timer: 500nA, 1.8V

Of course that's dependent on what' you're doing with the io pins etc.

See:http://ww1.microchip.com/downloads/en/DeviceDoc/40001585D.pd...

edit: fix typo

Re: Microchip to Acquire Atmel for $3.56B

#15
post #7

Noooo. Damn. Really loved Ateml's IDE. Microchip always charged for their IDE/compiler and I never felt like it was quite as nice to use.

??? Microchip's IDE has always been free; the XC compilers all have free versions, the only restriction being that you can't use the higher level optimizations (-O2 and -O3 for XC16 are premium; not sure about XC8 and XC32)

Re: Microchip to Acquire Atmel for $3.56B

#16
post #15
post #7

Noooo. Damn. Really loved Ateml's IDE. Microchip always charged for their IDE/compiler and I never felt like it was quite as nice to use.

??? Microchip's IDE has always been free; the XC compilers all have free versions, the only restriction being that you can't use the higher level optimizations (-O2 and -O3 for XC16 are premium; not sure about XC8 and XC32)

It's been a few years but I also remember a program size restriction on the free compiler.

Honestly, it's a difference in approach to tooling, Atmel took the approach of better, freely distributed tools. Now that they won't be around I don't know that Microchip will have a competitor in that space to keep them honest.

Re: Microchip to Acquire Atmel for $3.56B

#18

Atmel is so visible though, no wonder they're getting gobbled up. From a hobbyist point of view, I see so many projects involving Atmel chips is almost makes me think they have a monopoly on that, growing, segment of the market. This probably has as much to do with cheaper cost as it does with (relative) ease of use.

Isn't it more that Arduino boards dominate the hobbyist microcontroller space, and they have historically used AVR? IIRC, most new Arduino models are now ARM based.

Re: Microchip to Acquire Atmel for $3.56B

#19
post #8

Earlier quoted context omitted.

> The low end is something like the PIC 10F family, when compared to the Cortex-M0 its about a tenth the cost and a fiftieth the power consumed I don't really believe either of those claims. At 1ku quantity on Digikey (which admittedly is not the cheapest vendor) cheapest Cortex-M0 chips cost $0.378 and low-power chips (NXP KL03) start from $0.504. That aforementioned KL03 is advertised to run at 50 µA/MHz. Meanwhile…

Several of the PIC models have a low power mode where they run off an internal RC circuit somewhere in the KHz range. Just enough to wake up on an interrupt or some external stimuli and really pushes their power usage way down. For a PIC10KF320/322 you're looking at: Sleep: 20nA, 1.8V Operating: 25uA @ 1Mhz, 1.8V Watchdog Timer: 500nA, 1.8V Of course that's dependent on what' you're doing with the io pins etc. See: h…

For comparison, TI's MSP432 series is specified at 90 uA/MHz running, 850nA sleep with RTC enabled - and that's a Cortex M4 part with hardware FPU, not even an M0. I think Atmel's newest low-power M0 parts are even more impressive. Plus the Internet of Things means companies are wanting to run increasingly demanding code on low-power embedded devices. 8-bit chips are getting squeezed hard by ARM.

Re: Microchip to Acquire Atmel for $3.56B

#20

Atmel is so visible though, no wonder they're getting gobbled up. From a hobbyist point of view, I see so many projects involving Atmel chips is almost makes me think they have a monopoly on that, growing, segment of the market. This probably has as much to do with cheaper cost as it does with (relative) ease of use.

Isn't it more that Arduino boards dominate the hobbyist microcontroller space, and they have historically used AVR? IIRC, most new Arduino models are now ARM based.

Newer ones coming out are ARM but they're not a direct replacement yet due to being significantly more expensive

uno currently retails for $25, the arm-based zero is going for $50

Post reply on HN