10
votes
11answers
540 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.
Eve …
7
votes
11answers
423 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 …
6
votes
5answers
247 views
Embedded programming books
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 emb …
6
votes
11answers
678 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 reg …
5
votes
5answers
404 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 …
5
votes
4answers
158 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 …
5
votes
4answers
320 views
MPSOC : Which OS do you use and why?
I'm working on MPSOC, specially STM ST40 (SH4 base) and ST231 and I'm wondering which OS i can use on these to port a parallel application, I already had a look at STLinux which is …
5
votes
14answers
834 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, …
4
votes
4answers
163 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 use …
3
votes
2answers
154 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 …
3
votes
4answers
169 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 m …
3
votes
6answers
195 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 …
3
votes
26answers
983 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.
L …
2
votes
3answers
226 views
Python on an Real-Time Operation System (RTOS)
Hello,
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 u …
2
votes
2answers
646 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 d …
