Earlier quoted context omitted.
It doesn't seems unreasonable for them to want an email address before giving you PDFs of their stuff. They do want additional verification to get more detailed docs, but on the spectrum between available on the open Internet to all as a 1, vs only available on a hardwired line on a LAN on a military base at a 10, I'd give Qualcomm, I dunno, maybe 4?
In contrast, Microchip (and Atmel before it was acquired) made the datasheets for the MCUs used by Arduinos truly publicly available.
Qualcomm to acquire Arduino
521–530 of 553 posts
Re: Qualcomm to acquire Arduino
#522Earlier quoted context omitted.
Just because most of the free software ecosystem relies on unpaid volunteer work does not mean it is a desirable state of affairs, especially with billion dollar companies building on top of said work while hardly contributing anything back.
While that is true, if Espressif and the Raspberry Pi Foundation can build their SDKs and still offer cheap chips/boards, so could Arduino. I'm not expecting a $0 markup, but Arduino prices are simply unreasonable for what they offer, especially if you live in a lower income country.
Re: Qualcomm to acquire Arduino
#523Earlier quoted context omitted.
People are making so much of this when it seems so much simpler. Qualcomm likes buying high-margin businesses, and Arduino is a high-margin business. Gross margin on their boards is over 90% (hence why you can buy a Chinese clone of a $30 board for $3) and this trend shows no signs of slowing down. The TI equivalent of the $30 Arduino Uno is $5, and it's a true gateway product.
The Raspberry Pi Pico blows the Arduino out of the water in terms of computational speed, available RAM and so on, and it costs a fraction. I don't remember using an Arduino since the Pi Pico came out. And if the Pico isn't enough there are the bigger family members waiting in the wings. For me Arduino is mostly over. And then there is Espressif as well, they make some neat boards.
Re: Qualcomm to acquire Arduino
#524The problem is that there just isn't a whole lot of money to be made in providing hobby hardware for enthusiasts. Every time a big player gets involved, they think they can change this. A decade ago, Intel tried that back in the day with Galileo / Edison, and tellingly, they came up with the same "ideas": IoT / AI. If you're doing cheap IoT trinkets, you're never going to pay extra for a brand. You're going to buy th…
Re: Qualcomm to acquire Arduino
#525Earlier quoted context omitted.
A competent engineer designing a devkit as simple as an arduino needs about 1 day of work. Give it a week to include debugging. Amortize that cost over a million units and engineering time comes out to less than one cent per board.
It’s not quite that easy, and besides the hard part is the SW. arduino spent years writing SW code and still does to make it easy to run, debug issues and provide support. Also a million dev kits is unrealistic for vast majority of companies 5-20k is more the number I hard.
Re: Qualcomm to acquire Arduino
#526Earlier quoted context omitted.
The Raspberry Pi Pico blows the Arduino out of the water in terms of computational speed, available RAM and so on, and it costs a fraction. I don't remember using an Arduino since the Pi Pico came out. And if the Pico isn't enough there are the bigger family members waiting in the wings. For me Arduino is mostly over. And then there is Espressif as well, they make some neat boards.
Long live Teensy [1]! I just wanted that someone mentioned these Arduino-likes in the comments. I suspect many of you have come across them though. [1] https://www.pjrc.com/teensy/
Re: Qualcomm to acquire Arduino
#527Earlier quoted context omitted.
If they've done 500k units, "based on a respun Uno" almost certainly means "there's a atmega328p on the PCB, a 16MHz crystal, and some points granting access to the serial and reset pins"
ATMega328p, 32768Hz xtal, in a smart radiator valve. See OpenTRV (for the open part of the s/w and h/w) and Radbot for the commercial product.
Re: Qualcomm to acquire Arduino
#528Earlier quoted context omitted.
The Raspberry Pi Pico blows the Arduino out of the water in terms of computational speed, available RAM and so on, and it costs a fraction. I don't remember using an Arduino since the Pi Pico came out. And if the Pico isn't enough there are the bigger family members waiting in the wings. For me Arduino is mostly over. And then there is Espressif as well, they make some neat boards.
Long live Teensy [1]! I just wanted that someone mentioned these Arduino-likes in the comments. I suspect many of you have come across them though. [1] https://www.pjrc.com/teensy/
Re: Qualcomm to acquire Arduino
#529Earlier quoted context omitted.
Don't look at just the specs. You also need to look at the board design and programming environment. I've used the ESP32 native tools and they are a lot more complex than Arduino. But I'm an embedded firmware developer, so it's kind of what I expect. But I used an Arduino, with 5V tolerant outputs, to light up Halloween costumes for years. I do it in 1 page of code that's I write in their IDE. I don't have to set up…
> I've used the ESP32 native tools and they are a lot more complex than Arduino. How so? All of that is abstracted away from the users just like it is for Arduinos. In fact you can use the Arduino IDE to develop for most ESP32 chips. If anything Arduino is holding back everyone with their horrible IDE. Their Board and Library managers are painfully slow and having no way to store configuration with your sketch means…
Re: Qualcomm to acquire Arduino
#530Earlier quoted context omitted.
Yeah, I just did a project at work with an RP2040 and was really impressed with the Pico SDK. It hits a sweet spot in between ST’s insanity and Arduino’s easy-but-not-powerful tradeoff. No crazy code generation, going from 0 to blinky is quick, but also going from blinky to DMA’s and interrupts is also a breeze. I will say that I think the hardware peripherals in STM32’s are miles ahead, and PIO’s don’t necessarily m…
Yep the STM32 has certain advantages, even if they are usually complicated to program. With the Flipper Zero I programmed a low level timer interrupt and had to setup don't know how many registers... And the documentation is lacking. Also I love the fact that the STM32 comes in 5v variants that are great to interface it directly with things like a Commodore 64 or a Spectrum.