Trending

#embedded

Latest posts tagged with #embedded on Bluesky

Latest Top
Trending

Posts tagged #embedded

Post image

New review published on Tech Explorations: CrowPanel Advanced 7" ESP32-P4 Smart Display. This device is a powerful platform designed for embedded GUIs and edge-AI applications.

Article + YouTube hands-on video.

https://app.txplo.re/crowpanel1

#ESP32 #Embedded #IoT #Electronics #TechExplorations

0 1 0 0
Preview
Boosting Software Efficiency : A Case Study of 100% Performance Improvement in an Embedded System | NDC Toronto 2026 Ever wrestled with an embedded unit that had a mind of its own? That was my reality a few years ago. This unit, built with Linux, C++, and QT, was designed to be a reliable middleman, handling RF fram...

NDC Toronto 2026: Maximize Embedded Performance! ⚡

Join Gili Kamma for "Boosting Software Efficiency."

Dive into a real-world case study on achieving a 100% performance improvement in an embedded system!

📅 ndctoronto.com/agenda

🎟️ ndctoronto.com/tickets

🍁 May 5-8! #NDCToronto #cpp #Embedded

0 1 0 0
Original post on burningboard.net

@JensGustedt @embedded I found the interview valuable, and am considering buying your book, although it is easy to buy books and harder to read them! My comment about causes of failure was not a criticism, but rather a reflection of the differences in software worlds. Most discussion about […]

0 0 1 0

After doing a DSP deep dive over the last year I now get why reverb is one of the discipline's holy grails. Ain't easy to do it right. #embedded #dsp #synthdiy

0 0 0 0

RE: digitalcourage.social/@JensGustedt/11611092314...

I tremendously enjoyed listening to @JensGustedt and Gavin Henry of Software Engineering Radio discuss C23 and Gustedt's related book. Gustedt proposed lambdas, which were not adopted, and is now working on contracts. I was most […]

0 1 1 0
Preview
Почему половина бытовой техники на самом деле — это маленькие Linux-компьютеры Обычная стиральная машина, телевизор, камера наблюдения или автомобиль сегодня часто оказываются полноценными Linux-системами с процессором, памятью и сетью. Я разобрал несколько таких устройств и...

Почему половина бытовой техники на самом деле — это маленькие Linux-компьютеры Когда я впервые подключился п...

#linux #embedded #Linux #IoT #устройства #reverse #engineering #uart #прошивки #встраиваемые #системы

Origin | Interest | Match

0 0 0 0
Preview
MQX Web site: www.nxp.com/design/design-center/software/embedded-software/mqx-software-solutions:MQX_HOME Origin: Canada Category: Embedded Desktop environment: CLI Architecture: NXP, PowerPC, ARM…

NXP MQX RTOS – a full-featured real-time operating system including the MQX Kernel, TCP/IP stack (RTCS), embedded MS-DOS file system (MFS), USB host/device stack, and more. The MQX multitasking kernel provides pre-emptive scheduling, fast interrupt... archiveos.org/mqx/ #operatingsystem #embedded

0 1 0 0
Preview
indiedevcasts - Twitch Software developer, solarpunk, Rust, gamedev, voxel art, web, hardware, streamer. Yep, you can't keep up! That's on you! Welcome.

📡 Today it will be sensor healthcheck and initializing influxdb connection for our environmental monitoring and regulation system.

www.twitch.tv/indiedevcasts

#live #programming #rustlang #embedded

0 0 0 0
Intro to Embedded Rust Part 8: Lifetimes and Lifetime Annotations | DigiKey
Intro to Embedded Rust Part 8: Lifetimes and Lifetime Annotations | DigiKey YouTube video by DigiKey

Time for another #Rust video! This time, I show how lifetimes and lifetime annotations work. They come up a lot when working with embassy, so it's useful to know what that 'a means.
👇
www.youtube.com/watch?v=3hzr...

#embedded #microcontroller #programming #RaspberryPiPico @digikey.bsky.social

105 9 3 0
Post image

First casualty of the #PlumaN6 project..
Had a power wire touch something that it shouldn't, killing the MCU.. Almost all power rails were reading short until MCU was removed so it is confirmed dead... RIP
Time for a break until I can solder a new board
#embedded #debug #stm32n6

2 0 0 0
Preview
KK-82MS Pin Mapping Analysis Electrical Engineering & Electronics Projects for €30-250 EUR. I need the internal circuitry of the KK-82MS scientific calculator documented so I can design a drop-in rep



#Circuit #Design #Electrical #Engineering #Electronics #Embedded #Systems #Microcontroller #PCB #Design #and

Origin | Interest | Match

0 0 0 0
Post image

New review published on Tech Explorations: CrowPanel Advanced 7" ESP32-P4 Smart Display. This device is a powerful platform designed for embedded GUIs and edge-AI applications.

Article + YouTube hands-on video.

https://app.txplo.re/crowpanel1

#ESP32 #Embedded #IoT #Electronics #TechExplorations

1 1 0 0
Post image

🚀 Unisystem at Embedded World
We’re exploring the latest electronics innovations to expand our expertise in developing industrial solutions for our clients.
Have a concept in mind? Let’s talk: https://tiny.pl/bhxj-96y8

#Embedded #EmbeddedWorld #DisplaySolutions #Innovation

0 0 0 0
Post image

14 Apr: public/private (TBD), online, DE/EN (TBD), book until 31 Mar http://ow.ly/3e7530sRca8 #yocto #yoctoproject #yoctoizing #embeddedlinux #openembedded #linux #developer #embedded #coding #programming #software #embedsys @yoctoproject @yoctotraining

0 0 0 0
Collabora at Embedded World 2026

Collabora at Embedded World 2026

15+ demos spanning AI, graphics, testing infrastructure, and real-world applications. All running on open source.

Meet us at Booth 4-404 to see our latest #OpenSource innovations in #embedded systems.

#EmbeddedWorld2026

6 1 0 0
Preview
What is Physical AI? - Shawn Hymel Most of the recent excitement around artificial intelligence (AI) has focused on systems that live entirely in the digital world: large language models (LLMs)

The term #PhysicalAI seems to be gaining a lot of hype recently. The idea is simple: #AI systems that sense the world, make decisions, and influence real physical systems.

I wrote a short post on how this relates to robotics, #embedded systems, and #edgeAI.
👇
shawnhymel.com/3207/what-is...

3 0 1 0
Desktop screenshot with two terminal windows. The left window has a text editor with some C code:

#include <stdio.h>
#include "pico/stdlib.h"

void handle_panic(void) {
    printf("%f\n", 3.1415926f);
    while (1);
}

int main(void) {
    stdio_init_all();
    sleep_ms(5000);
    printf("%f\n", 3.1415926f);
    panic("test");
}

The right window shows a serial communication session with a Raspberry Pi Pico. The Pico has printed

3.141593
2.000000

(The last number should of course also be 3.141593 based on the C code.)

Desktop screenshot with two terminal windows. The left window has a text editor with some C code: #include <stdio.h> #include "pico/stdlib.h" void handle_panic(void) { printf("%f\n", 3.1415926f); while (1); } int main(void) { stdio_init_all(); sleep_ms(5000); printf("%f\n", 3.1415926f); panic("test"); } The right window shows a serial communication session with a Raspberry Pi Pico. The Pico has printed 3.141593 2.000000 (The last number should of course also be 3.141593 based on the C code.)

can anyone explain why the Pi Pico SDK's printf thinks pi=2 when called from inside a panic handler

#raspberrypi #embedded

1 0 5 0
Post image

Still running Windows CE? Now is the time to plan the transition.

Miłosz Kosobucki (KDAB) outlines practical strategies for migrating business logic, UI frameworks, and OS/hardware integration to #EmbeddedLinux: www.kdab.com/windowsce-to...

#Cpp #QtDev #Embedded #WindowsCE #Wince

0 0 0 0
Baochip-1x: A Mostly-Open, 22nm SoC for High Assurance Applications « bunnie's blog

Exciting new invention from Bunnie
If I wasn't overly busy and sliding into retirement I'd get started with it now.
#embedded #securitychip #microcontroller

2 0 0 0
Post image Post image

Embedded World 2026 is officially underway in Nuremberg.

Here’s a look at the KDAB booth (4-302). Stop by to explore our latest #embedded demos and talk with engineers about building high-performance systems with #QtDev, #Cpp, #RustLang, #Slint & #FlutterDev.

Details:
www.kdab.com/kdab-at-embe...

1 0 0 0
Post image

27 Apr: Early Bird - public/private (TBD), online, DE/EN (TBD), book until 30 Mar http://ow.ly/2QqG30sRE5p #yoctoizing #embeddedlinux #openembedded #linux #developer #embedded #coding #programming #software #embedsys

2 0 0 0
Post image

📍Embedded World 2026 starts in Nuremberg tomorrow.

Stop by KDAB at booth 4-302 to explore live demos of #embedded systems built with Qt, C++, Rust, Slint, and Flutter, and talk with our engineers about your projects.

Details:
www.kdab.com/kdab-at-embe...

#QtDev #Cpp #RustLang #Slint #FlutterDev

1 2 0 0
Post image

New review published on Tech Explorations: CrowPanel Advanced 7" ESP32-P4 Smart Display. This device is a powerful platform designed for embedded GUIs and edge-AI applications.

Article + YouTube hands-on video.

https://app.txplo.re/crowpanel1

#ESP32 #Embedded #IoT #Electronics #TechExplorations

1 1 0 0
Post image

Добавляем рекавери в Xiaomi Watch S1 В умных часах Xiaomi используется весьма необычный процессор BES2500BP , о котором по...

#embedded #development #reverse-engineering #xiaomi #watch #recovery

Origin | Interest | Match

0 0 0 0

As for me and my house, we will use blue wires for the clock signal because it reminds me of water clocks.

#makers #i2c #spi #embedded #robotics

0 0 0 0
Post image

The first round of Rust training courses in 2026 is done.

Missed it? The next opportunity is coming up in May. Together with @ferroussystems.bsky.social, KDAB is offering Rust courses again, from introductory sessions to more advanced topics: training.kdab.com/scheduled-tr...

#RustLang #Embedded

2 0 0 0
Preview
FRANK OS 1.0 Launches With a Retro Windows 95-Like Desktop FRANK OS 1.0 debuts with a windowed desktop inspired by Windows 95, running on RP2350 microcontrollers using the FreeRTOS kernel.

🫪 FRANK OS 1.0 Launches With a Retro Windows 95-Like Desktop

#frankos #freertos #windows95 #iot #embedded #retro
linuxiac.com/frank-os-lau...

0 0 0 0
Post image

New review published on Tech Explorations: CrowPanel Advanced 7" ESP32-P4 Smart Display. This device is a powerful platform designed for embedded GUIs and edge-AI applications.

Article + YouTube hands-on video.

https://app.txplo.re/crowpanel1

#ESP32 #Embedded #IoT #Electronics #TechExplorations

1 0 2 0

So we've since reverted now that we've learned about the new LTS cycles. A bit late, but at least before we did our release 😅

#infix #embedded

0 0 0 0
Intro to Embedded Rust Part 7: Creating a TMP102 Driver Library and Crate | DigiKey
Intro to Embedded Rust Part 7: Creating a TMP102 Driver Library and Crate | DigiKey YouTube video by DigiKey

Time for another embedded #Rust video! In this one, I combine the previous 6 episodes of knowledge to develop an I2C sensor driver (library/crate). Check it out!
👇
www.youtube.com/watch?v=8HDG...

#embedded #programming #RaspberryPiPico #microcontroller

62 5 1 1