Open hardware Raspberry Pi Pico VGA, SD Card, and Audio demo board to support QVGA video playback

Abhishek recently posted an overview of Raspberry Pi RP2040’s two PIO blocks with examples in C and Micropython using some PIO assembler code. He used some basic examples like blinking an LED, but the Raspberry Pi Foundation also mentioned the programmable IO could be used to drive a VGA display, read and write data from a MicroSD card at reasonable speeds, and so on. However, the Raspberry Pi Pico does not have any of those interfaces, and it would be nice to have a board that does. It turns out there’s such a board in “Chapter 3. The VGA, SD Card & Audio Demo board for Raspberry Pi Pico” of  “Hardware Design with RP2040.pdf” document. It will be sold as the “Pimoroni Pico VGA Demo Base” board for 19.50 GBP inc. VAT (about $22 US ex. VAT), but since the KiCad hardware files are open-source, I’d assume other companies may […]

Ubuntu Core 20 released for secure Linux IoT devices and embedded systems

Ubuntu Core 20 secure Linux IoT

Canonical has just released Ubuntu Core 20, a minimal, containerized version of Ubuntu 20.04 LTS for IoT devices and embedded systems. The company highlights several security improvements and features of the new version of the Linux-based operating system with secure boot, full disk encryption, secure device recovery, and secure containers. Ubuntu Core 20 is said to come with all benefits from Ubuntu 20.04 LTS such as regular, automated updates, the ability to manage custom app stores, and offers a longer 10-year support window. Ubuntu Core is available and certified on popular32-bit and 64-bit x86 and Arm single board computers such as Intel NUC or Raspberry Pi 4. Minimum requirements include a single-core processor @ 500 MHz, 256MB RAM, and 512MB storage. Alternatively, it’s also possible to run it in a virtual machine on your PC. Security is further enhanced with apps running in containers, and since only the necessary software […]

MutantC v3 open hardware DIY UMPC works with Raspberry Pi and compatible SBC’s

MutantC V3 Raspberry Pi UMPC

FOSDEM 2021 open-source developer event will take place online later this week, and yesterday we compiled a list of talks, with one entitled “MutantC PDA introduction – open source and hardware PDA shell” piquing my interest. The talk will be about the third revision of the hardware which allows you to create your own UMPC or handheld computer powered by a Raspberry Pi SBC or other compatible single board computers including Asus Tinker Board S, PINE H64 Model B, Banana Pi BPI-M4B, among others. MutantC v3 is versatile and highly customizable as can be seen from the specifications highlights: Supported SBCs – Raspberry Pi Zero, 2, 3, 4 and compatible. Arduino for keyboard – SparkFun Pro Micro 5v/16Mhz or SparkFun Qwiic Pro Micro – USB-C Display – 2.8-inch, 3.5-inch, or 4-inch “GPIO” LCD such as AdaFruit PiTFT 480×320 display Custom PCBs for display, mainboard, and thumbstick Expansion External 12-pin “docking” […]

FOSDEM 2021 Online February 6-7 – Hardware, Embedded & IoT talks

FOSDEM 2021 Online

FOSDEM is an open-source developer event that takes place on the first week-end of February every year in Brussels, Belgium. Every year except this year, as due to COVID-19 restrictions, FOSDEM 2021 will take place online like most events these days. The schedule has been up for some time, and today I’ll look at some of the interesting talks mostly from the Embedded, Mobile and Automotive “virtual devroom” but also other tracks. Saturday, February 6, 2021 13:00 – 14:00 – From Reset Vector to Kernel – Navigating the ARM Matryoshka Long gone are the times of executing the OS in-place from memory-mapped flash upon reset. A modern SoC now comes with complex mask ROM firmware, with driver, filesystem, protocol and crypto support for loading… yet another bootloader. In his talk, Ahmad follows this chain of bootloaders until the kernel is started, stopping along the way for RAM setup, peripherial initialization, […]

Build a Raspberry Pi CM4 4-Bay NAS with Wiretrustee Carrier board

Wiretrustee SATA board Raspberry Pi Compute Module 4

Broadcom BCM2711 processor comes with a PCIe interface that is used for the USB ports on the Raspberry Pi 4 SBC, but that is exposed through the board-to-board connectors of Raspberry Pi Compute Module 4, aka Raspberry Pi CM4, and allows all sort of designs. So far we’ve mostly seen this PCIe interface used for M.2 expansion slots on devices ranging from industrial computers to carrier board such as Piunora or Gumstix Raspberry Pi CM4 development board. But Wiretrustee had a different idea and designed carrier board with Marvell 88SE9215 PCIe to SATA controller and offering four SATA connectors to build a 4-bay NAS with Raspberry Pi CM4 module. Wiretrustee carrier board specifications: Supported SoM – Raspberry Pi Compute Module 4 and 4 Lite Storage 4x SATA 2.0 via Marvell 88SE9215 (PCIe 2.0 x1 to 4 6Gb/s SATA ports, no HW RAID) chip tested at a write speed of ~220MB/s […]

K210 AI Accelerator Raspberry Pi pHAT targets secure AIoT projects (Crowdfunding)

Kendryte K210 is a dual-core RISC-V AI processor that was launched in 2018 and found in several smart audio and computer vision solutions. We previously wrote a Getting Started Guide for Grove AI HAT for Raspberry Pi using Arduino and MicroPython, and XaLogic XAPIZ3500 offered an even more compact K210 solution as a Raspberry pi pHAT with Raspberry Pi Zero form factor. The company is now back with another revision of the board called “XaLogic K210 AI accelerator” designed to work with Raspberry Pi Zero and larger boards with the 40-pin connector. K210 AI Accelerator board specifications: SoC – Kendryte K210 dual-core 64-bit RISC-V processor @ 400 MHz with 8MB on-chip RAM, various low-power AI accelerators delivering up to 0.5 TOPS, Host Interface – 40-pin Raspberry Pi header using: SPI @ 40 MHz via Lattice iCE40 FPGA I2C, UART, JTAG, GPIOs signals Security Infineon Trust-M cloud security chip 128-bit AES […]

A closer look at Raspberry Pi RP2040 Programmable IOs (PIO)

Pico PIO State Machine

The popularity of Raspberry Pico board powered by RP2040 microcontroller has made every reader wanting to know more about the board and chip. So today we will be talking about RP2040’s Programmable IOs, a feature that makes it different from most other microcontroller boards. The two PIO blocks or let’s call it the hardware interfaces in the RP2040 have four state machines each. These two PIO blocks can simultaneously execute programs to manipulate GPIOs and transfer raw data.  Now, what do these state machines do? Well, the PIO state machines execute the programs fetched from various sources. Sometimes the programs are taken from the PIO library (UART, SPI, or I2C) or user software. Why Programmable I/O? All the boards usually come with hardware support for digital communications protocols such as I2C, SPI, and UART. However, if you plan to use more of these interfaces than what is available on the […]

Getting Started with Raspberry Pi Pico using MicroPython and C

Raspberry Pi Pico Blink LED

Raspberry Pi Pico board was just launched last Thursday, but thanks to Cytron I received a sample a few hours after the announcement, and I’ve now had time to play with the board using MicroPython and C programming language. I went to the official documentation to get started, but I had to look around to achieve what I wanted to do, namely blinking some LEDs, so I’ll document my experience with my own getting started guide for Raspberry Pi Pico using a computer running Ubuntu 20.04 operating system. The instructions will be similar for Windows and Mac OS. Preparing the hardware In theory, we could just get started with the board alone, but since I got some headers with my board, I also took the opportunity to try out Pine64 Pinecil soldering iron powered by MINIX NEO P2 USB-C power supply. The soldering iron worked great for about one minute, […]