DevHeads IoT Integration Server

DII

DevHeads IoT Integration Server

The DevHeads IoT Integration Server accelerates technology engineering by helping pro devs learn, share and collaborate.

Join
wafa_athmani
wafa_athmani5/16/2024

Is there a way to work with FreeRTOS without hardware?

Guys, is there a way to work with FreeRTOS without hardware, like simulation, for example, on Keil or another platform?"
Marvee Amasi
Marvee Amasi5/15/2024

Is there a tool that can help me automate the process of identifying all QNX-related system calls?

@Middleware & OS , I'm working on migrating a legacy application from QNX Neutrino to an open-source Linux-based RTOS. I've identified the third-party libraries and device drivers requiring porting. However, the challenge is analyzing the codebase for dependencies on specific QNX features like MsgSend, MsgReply, and MsgSendPulse. Since the code was written by another team, I have limited knowledge beyond compilation and execution details. Is there a tool available that can help me automate the process of identifying all QNX-related system calls or functions used in the code?...
Marvee Amasi
Marvee Amasi5/15/2024

turn my regular Ubuntu into real-time by adjusting the kernel with RT Linux patches or installations

So guys I'm attempting to turn my regular Ubuntu into real-time Ubuntu by adjusting the kernel with RT Linux patches or installations. However, I'm struggling to find a straightforward guide. Can anyone provide step-by-step instructions? @Middleware & OS...
Marvee Amasi
Marvee Amasi5/14/2024

which algo is much memory efficient and has better performance in traffic control system RMS or EDF?

So guys I want to get your opinion on this. I want to implement a task scheduling algorithm to control a traffic light system with three colors: red, yellow, and green. We can use two different algorithms: Algorithm 1: Rate Monotonic Scheduling (RMS) ``` #include <stdio.h>...
Marvee Amasi
Marvee Amasi5/13/2024

Why is there a need for a separate task stack in an RTOS?

So guys we know that In an RTOS (Real-Time Operating System), the Task Control Block (TCB) holds information for task management. But doesn't the TCB already include all the data needed for context switching, like register values? Why is there a separate task stack then? @Middleware & OS...
Marvee Amasi
Marvee Amasi5/13/2024

disturbing issue I'm having with LinkedList in C language, when I count how many nodes should be

Hello world!! @Middleware & OS There is this disturbing issue I'm having with LinkedList in C language, when I count how many nodes should be in the list, I always get 1
LL count: 1
LL count: 1
Here is the relevant code to get the last element , to add, and to count ``` void addLL(LL * head)...
pemcilwarrior12
pemcilwarrior125/13/2024

Can someone tell me if my machine learning model is overfitting or not ?

I hope you are doing well , I m working on a machine learning project and I just plotted the confusion matrix
406399
4063995/8/2024

how To train a machine learning model using TensorFlow to recognize a specific image in clothin?

hi everyone I'm asking about how To train a machine learning model using TensorFlow to recognize a specific image in clothin...
Prem Thengil
Prem Thengil5/8/2024

how to Create the the Task in RTOS and How to set the Deadline to the Task?

1)how to Create the the Task in RTOS and How to set the Deadline to the Task and Priority of the Task 2)how to Write ISR in RTOS and it's step wise Procedure to write it 3) what is mean by Software Timer 3)how to write IPC like Shared memory And Message Queue in the RTOS 4) which APIs are used in Interrupt ...
Marvee Amasi
Marvee Amasi5/6/2024

Memory Operations During Context Switch: Impact on Priority Tasks?

Hi @Middleware & OS I have two tasks, A and B, with A being high priority and B low priority. There are two global variables, condition and mem. Let's say Task B is currently running and performing memory operations. If Task A becomes ready while Task B is running, resulting in a context switch, will the memory operation continue even if the condition is set to false? If so, at which index will it restart? And what will the content of mem be after Task B finishes executing? ``` Task B - Low priority task
if (condition) { ........
karan_0189
karan_01895/6/2024

Resources for Learning Linux & Embedded C?

I am looking out for the opportunities to start my career in the embedded domains and currently I am learning Linux and Embedded c. Would love to collaborate with people to understand my route
Satan
Satan5/4/2024

2.8" 240x320 TFT display

Hello! I need help with this TFT display. Have anyone any experience with that? - It has got driver ILI9341 - http://www.lcdwiki.com/2.8inch_SPI_Module_ILI9341_SKU:MSP2807 A display worked perfect, but now, it does not display very well. When I upload an example code from TFT_eSPI library to the ESP32 (respectivelly clock example), then it flashes a few times and shows something like this. I think it is dead. ...
No description
Prem Thengil
Prem Thengil5/3/2024

Can Anyone Help Me this Question??

1)how to Create the the Task in RTOS and How to set the Deadline to the Task and Priority of the Task 2)how to Write ISR in RTOS and it's step wise Procedure to write it 3) what is mean by Software Timer 3)how to write IPC like Shared memory And Message Queue in the RTOS 4) which APIs are used in Interrupt ...
Marvee Amasi
Marvee Amasi5/2/2024

When do we use polling method and when do we use interrupts based method in RTOS?

Hey guys so when it comes to managing tasks in real-time operating systems (RTOS), I studied from an article that polling is like constantly asking, 'Are we there yet?' and Interrupts, however, are like someone tapping you on the shoulder to say, 'We've arrived!' when driving a car, Lol. But, when do we use polling method and when do we use interrupts based method. Can you think of times when you might want to do both at once? @Middleware & OS @Priyanka Singh @Rémi @Navadeep @Umesh Lokhande @Computing Lead @FW Lead...
wafa_athmani
wafa_athmani4/29/2024

wanna ask if this model is good or not , i used fnn feedforward neural network with 2 layers

Hello guys, i wanna ask if this model is good or not , i used fnn feedforward neural network with 2 layers
attachment 0
Marvee Amasi
Marvee Amasi4/29/2024

How can I run independent tasks on separate cores using ESP-IDF on ESP32?

Hey @Middleware & OS coding gurus 👩‍💻, There is this thing I want to fully understand. I'm working with ESP-IDF on an ESP32 and trying to run two independent tasks simultaneously on separate cores. Look how I did it using
C
C
👇👇: ``` xTaskCreatePinnedToCore(sensorsTask, "Sensor", 5000, 0, 0, &sensorTaskHandler, 0);...
Marvee Amasi
Marvee Amasi4/29/2024

Why does my RTOS MicroC project run smoothly outside tasks but fail within tasks?

Please guys @Middleware & OS , why is my RTOS MicroC project encountering issues where functions execute smoothly outside tasks but fails within tasks. Any pointers on troubleshooting this issue? Observe my cod e👇👇👇👇 ``` // Create a semaphore Semaphore sem = Semaphore(1);...
Marvee Amasi
Marvee Amasi4/25/2024

I'm confused about the difference between cooperative and non-preemptive scheduling.

Hi guys !! I'm confused about the difference between cooperative and non-preemptive scheduling. Some sources say they're the same, while others mention that in non-preemptive scheduling, higher priority tasks can interrupt lower priority tasks only at system ticks. Can anyone clarify this? Anyone? @Middleware & OS...
Marvee Amasi
Marvee Amasi4/25/2024

please I have a question

Hi guys please I have this question ``` // ga is a global variable int func_a() {...
Next