Tagged Questions
An RTOS is a Real-Time Operating System, a type of operating system that is designed to satisfy, possibly hard or firm, timing constraints. An RTOS is most likely to be used in in verifiable or safety critical systems. Such systems arise most frequently in the medical, automotive and defense industries
14
votes
8answers
3k views
Embedded programming books [closed]
What embedded programming/design books would you suggest? With embedded I mean near to hardware programming in ASM and C/C++. I'm looking something related to best practices in embedded ...
12
votes
8answers
3k views
Experiences with (free) embedded TCP / IP stacks?
Does anyone have especially good (or bad) experiences with any of the following embedded TCP / IP stacks?
uIP
lwIP
Bentham's TCP/IP Lean implementation
The TCP/IP stack from this book
My needs are ...
11
votes
12answers
2k views
How do Real Time Operating Systems work?
I mean how and why are realtime OSes able to meet deadlines without ever missing them? Or is this just a myth (that they do not miss deadlines)? How are they different from any regular OS and what ...
10
votes
5answers
718 views
Why would I consider using an RTOS for my embedded project?
First the background, specifics of my question will follow:
At the company that I work at the platform we work on is currently the Microchip PIC32 family using the MPLAB IDE as our development ...
10
votes
10answers
993 views
How to preserve stack space with good design?
I'm programming in C for RAM limited embedded microcontroller with RTOS.
I regularly break my code to short functions, but every function calling require to more stack memory.
Every task needs his ...
8
votes
11answers
2k views
Polling or Interrupt based method
When should one use polling method and when should one use interrupt based method ?
Are there scenarios in which both can be used ?
8
votes
5answers
365 views
Does it make sense to mix an RTOS and cyclic executive?
On a small embedded system project we have some code which we would like to run in a thread so we are electing to build in top of an embedded RTOS (eCos).
Previously, we have used a cyclic executive ...
7
votes
12answers
1k views
Are There any Open Source Real Time Operating Systems?
Are there any open source real time operating systems out there? I've heard of real-time Linux, but most implementations seem to really be a proprietary RTOS (that you have to pay for) that run Linux ...
6
votes
18answers
2k views
What operating systems available for an 8-bit microprocessor?
It does not need to be a full fledged OS, but at least have multitasking capabilities (i.e. a scheduler).
Please mention what processor architecture it works on.
This is a survey, so exact ...
5
votes
2answers
124 views
Ada multitasking RTOS supported with opensource cross-compilers
Which RTOSes do Ada have opensource/free cross-compilers available, with support for multitasking/multithreading?
I have an Atmel AT90USB162 chip which I want to program using Ada. My first option ...
5
votes
3answers
460 views
Difference between OS scheduling and RTOS scheduling
Consider the function/process,
void task_fun(void)
{
while(1)
}
If this process were to run on a normal PC OS, it would happily run forever. But on a mobile phone, it would surely crash the entire ...
5
votes
2answers
324 views
Embedded device drivers development notes
I want to develop some HAL (Hardware Abstraction Layers) to use in PIC32 and some ARM.
Basically I want to make some code that's usually available on a OS, like generic pin access, communication ...
5
votes
2answers
585 views
Real Time Operating Systems for Embedded Systems -> Good Starting books
I have worked extensively on AVR microcontrollers. I haven't had a proper OS course at UNI..not from a CS branch, but I want a book that gives me generic OS concepts as well as RTOS concepts for ...
5
votes
1answer
618 views
Who schedules the scheduler in OS - Isn't it a chicken and egg scenario?
Who schedules the scheduler?
Which is the first task created and how is this first task created? Isn't any resource or memory required for it? isn't like a chicken and egg scenario?
Isn't scheduler ...
5
votes
4answers
481 views
Alternatives to explicit stacks in RTOS-removal excercise?
In an embedded application programmed on C on ARM7 (with portability requirements), currently using a commercial priority-based preemptive RTOS, we need to remove that RTOS and any RTOS dependency per ...
5
votes
27answers
2k views
What are some Real-Time Operating Systems for 32-bit processors?
What RTOS have you used or recommend for 32-bit processors.
I'm interested in mainstream processors here: PowerPC, Pentium, ARM, MIPS
A link to a web site would be a nice bonus.
Let's conduct this as ...
4
votes
5answers
1k views
When should we use mutex and when should we use semaphore
When should we use mutex and when should we use semaphore ?
4
votes
4answers
797 views
Are there any lightweight analogues to CORBA/RPC for embedded programs?
I am writing embedded applications for different hardware (avr, arm7, tms55xx…) and different rtoses (freeRTOS, rtx, dsp/bios). And every second of them needs to communicate with PC or another digital ...
4
votes
4answers
968 views
Writing embedded application for msp430?
I would like to be able to have a basic OS and a basic file system for the high end MSP430 probably the MSP430F5438. I know I can go with something like FreeRTOS , IAR PowerPac or Micrium to name just ...
3
votes
3answers
819 views
In vxworks, should every task be spawned with VX_FP_TASK option?
In vxworks, should every task be spawned with VX_FP_TASK option?
The VX_FP_TASK option is required if your task uses any floating point operations. But how does one predict the future - i mean, how ...
3
votes
4answers
1k views
Which Linux RTOS solution should I choose?
I'm preparing myself to build RTOS solution on top of Linux this going to work on embedded device. I've done some investigation by myself but still I'm a bit confused.
Those are my criteria:
Easy ...
3
votes
6answers
286 views
Porting Windows software to Embedded/Realtime Operating Systems
I have an existing codebase targeting a Windows environment and with an eye to the future, would like to make this as cross platform as possible.
I've had some sucess with standard Linux distributions ...
3
votes
2answers
2k views
How are the vxWorks “kernel shell” and “host shell” different?
In the vxWorks RTOS, there is a shell that allows you to issue command to your embedded system.
The documentation refers to kernel shell, host shell and target shell. What is the difference between ...
2
votes
2answers
58 views
Decoupled application modules
I'm searching an embedded RTOS which supports the functionality to update the software without to compile/link the whole kernel and application SW. The concept would be like in Windows or Unix Desktop ...
2
votes
3answers
70 views
Context switching in uC/OS (embedded systems)
I'd like to know if its possible to have an interrupt force the scheduler to switch context to a specific task in RTOS. I'm working with microCOS OS
Here is the task which performs the keyscan and ...
2
votes
2answers
109 views
arm-none-eabi-g++ calling globral constructor
I am trying to port c++ application to arm board with gcc tools (using RTOS).
But my static const constructors are not being called.
Simple code:
class TestClass {
public:
TestClass();
...
2
votes
3answers
132 views
How to program in Windows 7.0 to make it more deterministic?
My understanding is that Windows is non-deterministic and can be trouble when using it for data acquisition. Using a 32bit bus, and dual core, is it possible to use inline asm to work with ...
2
votes
3answers
203 views
State machine versus RTOS for microcontrollers
I stumbled across a free state machine tool. This appears to be for programming embedded systems graphically. By doing so, the author claims that the resulting code is more maintainable than if an ...
2
votes
1answer
170 views
Minimal FOSS RTOS with TCP/IP, SSL, USB and basic file-system support for ARM
Here's a candid admission first -- that I know zilch about RTOS or Embedded programming, so folks who know better may help me frame the query more appropriately.
What would be the minimal FOSS RTOS ...
2
votes
3answers
386 views
Problem with Array of Queues in FreeRTOS
I am building a FreeRTOS application. I created a module which registers a freeRTOS queue handle from another module and when an interrupt in this module module occurs, it sends a message to all the ...
2
votes
1answer
160 views
Good method to pass messages between embedded RTOS tasks (but can handle message timeouts gracefully)
I'm working with an embedded RTOS (CMX), but I think this applies to any embedded RTOS. I want to pass messages between various tasks. The problem is that one task sometimes 'locks' every other task ...
2
votes
2answers
348 views
Micrium uC-OS/II on Dynamic C/Rabbit - might have task starvation
I'm trying to get 2 tasks to run in my Dynamic C under Micrium uC-OS/II. One task is the http handler, the other reads from the serial port. The serial port task seems to inhibit the http task from ...
2
votes
4answers
228 views
Processor can support/require an RTOS?
I have few queries related with going in for an RTOS for the different processors in hand. These are generic questions. Maybe you can clarify with examples specific to any processor/rtos or even ...
2
votes
4answers
227 views
Communication between processor and high speed perihperal
Considering that a processor runs at 100 MHz and the data is coming to the processor from an external device/peripheral at the rate of 1000 Mbit/s (8 Bits/Clockcycle @ 125 MHz), which is the best way ...
2
votes
4answers
402 views
Throughput calculation using cycle count
Is it possible to determine the throughput of an application on a processor from the cycle counts (Processor instruction cycles) consumed by the application ? If yes, how to calculate it ?
2
votes
0answers
217 views
Gang scheduling in RTOS over a multicore processor
I understand that Gang scheduling is a scheduling algorithm for parallel systems that schedules related threads or processes to run simultaneously on different processors.
Gang scheduling is used so ...
2
votes
3answers
424 views
How to calculate a RTOS task's time
I have written a code in c for Arm7 using RTOS. There are multiple tasks who's priority is set to same level. So the tasks executes on round-robin base.
There is an exception that one task (Default) ...
2
votes
1answer
658 views
FreeRTOS Sleep Mode hazards while using MSP430f5438
I wrote an an idle hook shown here
void vApplicationIdleHook( void )
{
asm("nop");
P1OUT &= ~0x01;//go to sleep lights off!
LPM3;// LPM Mode - remove to make debug a little easier...
...
2
votes
1answer
1k views
FreeRTOS configTICK_RATE_HZ problem
I am using an MSP430f5438 with version 5.4 of FreeRTOS.
I am having a funny problem that I can't figure out.
Basically, when I set configTICK_RATE_HZ to different values, the LED blinks faster or ...
2
votes
4answers
2k views
Python on an Real-Time Operation System (RTOS)
I am planning to implement a small-scale data acquisition system on an RTOS platform. (Either on a QNX or an RT-Linux system.)
As far as I know, these jobs are performed using C / C++ to get the most ...
2
votes
3answers
3k views
How does vxWorks deal with two tasks at the same priority?
We have two tasks (T1 and T2) in our vxWorks embedded system that have the same priority (110).
How does the regular vxWorks scheduler deal with this if both tasks are ready to run?
Which task ...
1
vote
0answers
16 views
Introduction to os21 [closed]
Hi all I have browsed on the net but couldn't find any resources for os21 except the user reference manual. I want know more general and basic things about it if anyone knows any valid links please ...
1
vote
3answers
196 views
Multitasking RTOS on AVR
I have an AT90USB162 AVR chip which I want to run a multitasking RTOS, so I am evaluating possible RTOS for using with my AVR chip. Which multitasking RTOS's are supported by AVR? Maybe QNX? (Is it ...
1
vote
3answers
82 views
Linux RTOS sleep() - wakeup() for timer task
I have a task which is basically a TIMER; so it goes to sleep and is supposed to wake up periodically.. So the timer task sleeps for say 10ms. But what is happening is that it is inconsistent in ...
1
vote
1answer
160 views
Is it possible to apply RTAI patch to Android?
I want to build a real-time version of linux. I am wondering if it worth trying to apply RTAI patch to android. Can any experience programmer shed some light ?
1
vote
2answers
157 views
PowerPC: How to make div/0 return zero as a result
We are attempting to port a legacy application from an old monolithic RTOS to a unix based RTOS on a PowerPC 8360. In the old system, our large code base became dependent upon 1/0 returning zero, and ...
1
vote
1answer
80 views
There is RTSJ for Java - Is there something comparable for C#?
I read that there is a realtime specification for a virtual machine executing java bytecode in real-time (RTSJ 1.1 in JSR 282). This makes it possible to execute Java code in real-time even on ...
1
vote
1answer
99 views
Port Qt to On-Time RTOS-32
I would like to know if there is some port of QT for On-Time RTOS-32.
Is there any place where I can found more information about this kind of port?
Thanks in advance.
Regards,
Guillermo
1
vote
1answer
842 views
How to use the interrupt handler in FreeRTOS?
Hi I'm trying to use the OpenPicus devKit for a project I am working on and to my understanding the IDE, upon new project creation, creates code that basically utilizes FreeRTOS and OpenPicus ...
1
vote
1answer
399 views
Free RTOS for windows
Is there any free alternative to TenAsys Intime RTOS, that comes fully integrated with Visual Studio 2010? Or if they aren't, which of the RTOS tools would you recommend me?
Thanks in advance!