Become a leader in the IoT community!
Join our community of embedded and IoT practitioners to contribute experience, learn new skills and collaborate with other developers with complementary skillsets.
Hey @here. Happy to announce that I have managed to complete my first contributions(s) to Zephyr and most of them have been approved and marked for `v4.1.0`. It was a […]
Hi guys, using zephyr rtos, someone know the best way to toggle a gpio pin, from a thdead that runs in user mode? Thank you very much!
I encountered an issue when injecting my assembly program **asm.txt** into a **portable executable file** to run a keylogger using `CreateThread`. `CreateThread` was failing with the error code `0x3E6 (ERROR_NOACCESS)`. […]
I was previously working on a *distributed robotic control system* where multiple robotic arms communicate via *CAN Bus* to coordinate their movements. Each arm operates independently, but they share data […]
I am using FreeRTOS on an STM32F4-Nucleo board and `vTaskGetRunTimeStats()` to measure task CPU usage with the following code: void configureTimerForRunTimeStats(void) { g_osRuntimeCounter = 0; } unsigned long getRunTimeCounterValue(void) { […]
Learning IoT and Embedded devices.
It looks like Eclipse is not working on threadX at this time.
Hey guys i’m attempting on working on an ESP32 robotic arm control system using FreeRTOS and MQTT, but the system occasionally freezes. I suspect a deadlock between `controlArmTask` and `sendCommandTask`. […]
hey guys, I’m working on an embedded system running FreeRTOS on an ARM Cortex-M4 microcontroller clocked at 72MHz. I need to measure the execution time of a specific code block […]