Podcast: Play in new window | Download
Subscribe: Apple Podcasts | RSS
Welcome Matt Richardson, the first US member of the Raspberry Pi Foundation!
- The foundation has about 15 people in various roles (hardware, admin, education, outreach).
- There are now approximately 4.5 million Raspberry Pi’s in the world! Dave was curious how many were orphaned but Matt says “they don’t expire”.
- The official add-on boards are called HATs. Adafruit coined the term “Plates” for a similar concept.
- The Model B+ moved from a smaller connector to a 40 pin connector, with much more pin fanout from the chip.
- Each HAT has an EEPROM onboard to tell the Broadcom chip how to configure the pins.
- Matt has published a wide range of projects on his portfolio site. Some of the best known are the awesome button and the enough already projects.
- He has also attended the sketching in hardware conference, which seems to fit Matt’s skillset well.
- While working at MAKE and before joining Raspberry Pi, Matt attended the NYU ITP program.
- It was at ITP that he developed the descriptive camera. That uses a BeagleBone, a webcam and an interface to Mechnical Turk. In high pressure, long duration showcases of the project, Matt redirected the images to his partner, who supplied funnier than normal descriptions of the things being captured.
- Matt’s focus has been on implementing other technology blocks, which gave him a good view on how people interact with technology, specifically the UI.
- Dave mentioned that engineers used to pay a fortune for GUI library ($10K+) for something like an 8086 PC104 board, because it was worth it to have something that works.
- Matt did a bike lamp project that tells you how fast you’re going using a Raspberry Pi and a picoprojector.
- As an author, Matt has written (and co-written) 3 books
- Just a few days ago, the Raspberry Pi 2 was announced!
- It has a quadcore, ARMv7, 900 mhz processor and averages about 6x faster processing if multithreading is possible. It is moving from the Broadcom 2835 to the 2836.
- Since it uses the ARMv7 instruction set, it can run things like Ubuntu and Windows 10. Previously the most popular distro was a custom one called Raspian.
- It also enables interesting new applications like using Robot OS (ROS). That can only run on an ARMv7.
- The new board uses the same B+ header but has some small physical differences.
- The hardware is not open source, but the foundation is working on opening up the software used in the graphical side of things.
- The main focus was on low cost (hitting a $35 price point) and the tradeoff is using high volume chips that are not open to the public. This is similar to Bunnie’s take on the MediaTek chipsets (and how he got around it).
- Matt will be working on getting the RPi into the US education system, which is very fragmented. There is a good footprint in the UK. They run workshops for teachers called PiCademy.
- The board can work as a great gateway for people into electronics. Students enjoy running Minecraft on it using a port called Piper.
- How low can you go? Rip off some headers and slightly change the functionality and the Model A costs $20.
- There is also a more commercially viable piece called the compute module. It is on a SO-DIMM card and is meant for low volume applications as engineers transition over from using the main board to more custom hardware. There was a Kickstarter called Otto that did just that.
- Chris talked about the viability of using a common computing platform for something like Contextual Electronics, where all of the software could be preloaded onto a Raspberry Pi, removing variation.
- The RPi can run KiCad smoothly. Matt talked about wanting to design a HAT on a Raspberry Pi, have it cut out by an Othermill or similar (controlled by an RPi) and then have the parts placed by a device that uses the RPi.
- There are some classes that are working on bare metal programming, using assembly to program the RPi. This is happening at the U of Cambridge (and online!) and Chris thought he heard of something similar at Stanford.
- After some confusion from Chris, Dave explained the register set isn’t needed for assembly because there are standard ARMv7 instruction sets.
- Matt and others from the foundation will be at SXSW this year.
- If you are interested in talking about education and partnerships, get in touch with Matt on twitter as @MattRichardson or reach him via email at (well, listen to the end of the show to find out)
Jason says
“a bike lamp project” url is broken
Shortest Circuit says
Not that it is so hard to find http://mattrichardson.com/Dynamic-Bike-Headlight/index.html 😉
Chris Gammell says
Fixed it
Rafael Souza says
One other small issue: it is not ARM7 instruction set, but ARMv7 (yeah, they have a crazy naming convention).
Chris Gammell says
You know I had it like that at one point, but I changed it thinking “surely it couldn’t be both”
Thanks
Rafael Souza says
(hit enter too fast)
BTW, preventing access to the datasheet will not reduce the price of the device. At the end of the day, a datasheet is created irrespective of the sensitive of its specifications, and the decision to provide mass market support is not dependent on the availability of documentation. Companies do this all the time – the familiar sentence: “this product is provided as-is without support” is true for several devices across manufacturers.
RPi foundation took a conscious decision to go with a manufacturer that traditionally closes everything and used a core that was probably already on its way out of the market (ARM11 back in 2012 was already being severely offset by CortexA). This was a sweet deal for both parties: BCM had a low-risk gamble and RPi could get their parts at an unreachable pricepoint for the common man. Two million parts sold only helps erode the price even more.
There is nothing wrong with that at all, especially given the enormous success of RPi, but in my opinion there is no way to spin this in a different way.
Regarding the baremetal programming: this is perfectly possible in a Cortex A8 core, as there is shared work for other devices out there (something very hard to do on an ARM11).
rasz_pl says
Dave laughs at minecraft, but loves lego, enjoy your cognitive dissonance Dave 🙂
ru4mj12 (@ru4mj12) says
Similar to outsourcing the artificial intelligence to Amazon’s Mechanical Turk for the photography project , BeMyEyes’s app looks to connect the visually impaired with volunteers that can help them read labels, etc!
ben says
Not an online course but Stanford has a bare metal raspberry pi course: CS 107E: Computer Systems from the Ground Up
http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/
Anyone know how the Otto camera compares to OpenMV or cmucam5 pixy?
( http://www.cmucam.org/projects/cmucam5 )
https://www.tindie.com/products/AP_tech/tsl1401cl-linescan-camera-/
For example, you can’t pull raw images from the Pixy’s SPI/USB. Instead it trasmits the objects tracking data. Maybe OpenMV can do both?!
It’d be nice if it works with OpenCV or pixython? But I always thought OpenCV could only work on a desktop (intel, full linux), but I think recently it’s been made to work on an embedded arm platform (BeagleBone).