Flipper Zero hardware & wireless hacking tool gets an app “store” with open-source app

Flipper Zero

Flipper Zero portable multi-tool for pentesters and hardware hackers has now gotten an app “store” with currently around 100 free and open-source apps available through the device’s Android or iOS app. I missed it at the time, but the Flipper Zero launched on Kickstarter in July 2020 and was massively popular with close to 5 million dollars raised from almost 38,000 backers. The tool looks like a toy but it allows hacking with GPIOs and short-range wireless protocols such as Bluetooth, RFID, NFC, and infrared. Flipper Zero specifications: Wireless MCU  – STMicro STM32WB55RG with Arm Cortex-M4 application core @ 64 MHz, Arm Cortex-M0+ network core @ 32 MHz, 1024 KB flash, 256KB SRAM Storage – MicroSD card slot up to 64GB Display – 1.4-inch monochrome LCD (black on orange background) with 128×64 resolution via ST7565R SPI display controller Connectivity Bluetooth 5 LE & 802.15.4 via STM32WB55 microcontroller Bluetooth LE – […]

Ubuntu 22.10 released with MicroPython and improved Raspberry Pi display support

Ubuntu 22.10 Raspberry Pi MicroPython

Canonical has just released Ubuntu 22.10 “Kinetic Kudu” with improved desktop usability and performance, upgrade enterprise management tooling, and tools to optimize developer workflows, but highlights most relevant to CNX Software readers are the inclusion of MicroPython and improved embedded display support for Raspberry Pi. It feels like Ubuntu 22.04 LTS was just recently outed, but six months have already passed and Ubuntu 22.10 interim release is out. Some of the generic changes include: Toolchain updates to Ruby, Go, GCC and Rust OpenSSH server (sshd) is only activated when an incoming connection request is received to lower the memory footprint on resource-constrained devices A new debuginfod service to help developers and admins debug programs shipped with Ubuntu Landscape 22.10 beta to run and manage Ubuntu server to desktop on most architectures including Arm and RISC-V GNOME 43 with GTK4 for improved performance and consistency. Pipewire audio platform with better Bluetooth […]

Rock 5B RK3588 SBC preview – What works, what doesn’t in Debian 11

Rock 5B review Debian 11

I’ve recently received an early sample of Radxa ROCK5 Model B (aka ROCK 5B) SBC part of the “Developer Edition” batch with 16GB RAM, and already showed the hardware and it booting successfully in Debian 11.

I’ve now spent more time with the board, and as part of the “debug party” tested performance and features in Debian 11. As one would expect, some things work fine, providing excellent performance, but others still need improvements.

WCH CH348 is an 8-port USB to serial chip with up to 48 GPIOs

CH348Q CH348L packages

If you need to control or debug multiple devices over UART devices, you’d be glad to learn WCH has just launched the CH348 USB to serial chip with eight UART ports. Two models are offered CH348L in an LQFP100 package and CH348Q in an LQFP48 package. Both offer eight UART interfaces, but CH348L comes with more CTS/RTS and DTR/hardware flow control signals, as well as DTR, DCD, RI signals, and support for independent voltage for I/Os. CH348 key features specifications: High-speed USB device interface Hardware full-duplex serial port, integrated independent transmit-receive buffer Baud rate varies from 1200bps to 6Mbps. The serial ports support 8 data bits, odd, even, and none parity, 1/2 stop bit. Each serial port comes with a 2048-byte receiving FIFO and a 1024-byte transmitting FIFO. Signals RTS, DTR, DCD, RI, DSR, and CTS supported for hardware flow control The MODEM interface signal pins and 485 transmit and […]

Beagle-Pi Emulator is a Raspberry Pi HAT adapter for BeagleBone Black (Crowdfunding)

Beagle-Pi Emulator BeagleBone Black Industrial

We recently reported the Raspberry Pi boards were getting really expensive due to a lack of supply, and the problem has gone on for while without a clear idea when the issue will be resolved. This does not help Raspberry Pi HAT manufacturers, and for instance, Sequent Microsystems has made Raspberry Pi HATs over the years most models with multiple relays, but also others for temperature sensors, and others automation applications. One solution would be to use compatible boards like ODROID-C4 or Rock64, but Sequent Microsystems found out the BeagleBone Black Industrial was well-stocked by various distributors, and instead, they designed the “Beagle-Pi Emulator” adapter to use Raspberry Pi HAT on the Texas Instruments Sitara AM3358 board.   An adapter is needed because the BeagleBone Black boards are equipped with two 46-pin headers instead of the 40-pin header on Raspberry Pi SBC’s. The expansion board routes I2C, SPI, four serial […]

FOSDEM 2022 schedule with embedded Linux, IoT, automotive… sessions

FOSDEM 2022

While typically taking place in Brussels, Belgium, FOSDEM 2022 will take place online just like FOSDEM 2021 due to COVID-19 restrictions. The good news is that it means anybody can attend it live from anywhere in the world, and makes it more like “FOSDIM”, replacing European with International, in “Free and Open Source Developers’ European Meeting”. FOSDEM 2022 will take place on February 5-6 with 637 speakers, 718 events, and 103 tracks. I’ve made my own little virtual schedule below mostly with sessions from the Embedded, Mobile and Automotive devroom, but also other devrooms including “Computer Aided Modeling and Design”, “FOSS on Mobile Devices”, “Libre-Open VLSI and FPGA”, and others.   Saturday, February 5, 2022 12:30 – 13:00 – Five mysteries in Embedded Linux by Josef Holzmayr Once you start out in embedded Linux, there is a lot to do. Some things are obvious, some less so. First and foremost, […]

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 […]

LibIIO – Library for interfacing Linux industrial I/O devices

For more than 6 years, the LibIIO library has existed to ease the development of software interfacing Linux Industrial I/O (IIO) devices. It is part of the Linux Kernel and a subsystem that provides support for devices like analog to digital or digital to analog converters (ADCs, DACs). This subsystem includes ADCs, accelerometers, pressure sensors, color, light and proximity sensors, temperature sensors, RF transceivers, and many more. You can use LibIIO natively on an embedded Linux target. It is cross-platform, supporting Linux, Windows, and Mac OS. Analog Devices Inc. was the main company behind LibIIO development, which is currently an active open-source library, which many people have contributed to. What does LibIIO do? LibIIO will identify the channels that belong to each device. It will assign specific attributes, one for the channels and one for the devices. Then, it will also create a context that is a place where all […]

Memfault IoT and embedded debugging platform