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 ...
-1
votes
1answer
23 views
PJSIP and FreeRTOS [closed]
I have been investigating the use of the PJSIP SIP stack on a small micro-controller such as the PIC32 MCU and I've come to realise that it may just be possible. I want only the absolute minimal SIP ...
1
vote
2answers
23 views
Compiler isn't handling freertos #define code
I'm just trying to load the demo code into my RX62N, but the code doesn't compile. I get a lot of errors exactly like this one.
Error[Pe125]: expected a "(" C:\FreeRTOSV7.4.2\FreeRTOS\Source\queue.c ...
0
votes
0answers
27 views
QNX BSP beaglebone CAN device
I have an issue with the CAN Device on beagle bone running QNX. I am using the BSP package for QNX. I could include and initiate the CAN device by including the binary in my build image. I looked into ...
0
votes
1answer
35 views
Selecting the right MCU for a FreeRTOS embedded system [closed]
I got a project going on where i am going to interface STM32 MCU with a bunch of sensors (Accelerometer, gyroscope etc..) make some math on the downloaded sensor data, and generate an appropiate ...
0
votes
0answers
25 views
How to read a GPIO clock signal in Xenomai?
I have Xenomai installed in an ARM PC (Xenomai 2.5.6 - Linux Kernel 2.6.35.9) and I need to read a 10 kHz clock signal. The signal is electrically connected to one of my GPIO's, which is mapped to a ...
-1
votes
1answer
51 views
Working with RTOS [closed]
I'm quite new to embedded field.i want to learn RTOS and apply it for any application .I have been searching in net for a while and i have been lost completely.
Is there a good place to start.
0
votes
0answers
65 views
RTOS or Bare Metal? [closed]
We are planning on starting a new project using an Altera's FGPA with a hard core ARM Cortex A9 dual core in it (Cyclone V SoC)
The most important stuff for my development is multi-threading and USB ...
3
votes
3answers
126 views
Ways to avoid memory fragmentation
I allocate a big memory pool from RTOS (I already know my application memory requirement, it will not grow beyond a certain size). And then my application allocation requests are fulfilled from that ...
0
votes
0answers
27 views
Suitable architecture for event driven, multitasking machine control
I am looking for a technology that I can use in an embedded system for event communication. I am limited to a basic RTOS and, say, a 100MHz processor. I would like to be able to extend messaging ...
0
votes
0answers
57 views
Porting GPRS alone in ANDROID ICS without GSMMUX driver
I'm developing the ANDROID ICS device. I've Quectel GSM modem. and i had connect with my android device over the USB (/dev/ttyUSB0), and checked the call function its working fine in my device i can ...
1
vote
1answer
77 views
semaphore priority inversion
My question is why in RTOS, they always don't have any implementation to prevent priority inversion for Semaphore, but there always some implementation for Mutex.
Semaphore doesn't need to prevent ...
0
votes
0answers
13 views
How about this RTOS which named DJYOS?
I found a rtos from net, it named DJYOS, coming from china. it sounds very cool.
with the ability to create gui just as IOS.
How to check a the quality of a RTOS, even know it's source code?
3
votes
4answers
103 views
What happens in the CPU when there is no user code to run?
It sounds reasonable that the os/rtos would schedule an "Idle task". In that case, wouldn't it be power consuming? (it sounds reasonable that the idle task will execute: while (true) {} )
0
votes
0answers
19 views
What is a typical tick interrupt duration in terms of CPU percentage?
In many RTOS's the tick interrupt activates the scheduler which checks if higher priority task is ready to run and if so, performs a context switch.
I wander what is a typical duration of the tick ...
0
votes
0answers
31 views
how can i make MODBUS TCP session invalid?
In mcf52233 controller I have implemented multi master with tcp modbus protocol(multiple clients for MODBUS TCP running on PC and server running on my hardware.) for this i referred ...
0
votes
0answers
59 views
Running Google Protocol Buffers on a RTOS without pthread support?
I am considering using Google Protocol Buffers to implement RPC on a TI DSP running TI SYS/BIOS. I think that Google Protocol Buffers needs a pthread library, which SYS/BIOS does not have. Has anyone ...
0
votes
1answer
69 views
How to execute the sample rtems program on eclipse ide?
I installed rtems, mingw, msys, grmon in a eclipse platform and also specified the path in environmental variable. I try to execute a given sample rtems program but it is showing a ERROR has * ...
0
votes
0answers
19 views
Difference between .int and .pint Files
In Green Hills INTEGRITY, what is the difference between a .int file and a .pint file?
0
votes
1answer
90 views
Is there any good tutorial for RTEMS [closed]
I want to install RTEMS and also want to know the compiler to use in RTEMS operating system.
1
vote
2answers
116 views
Is bootloader required to run a firmware?
I am currently working on firmware for a Stellaris ARM microcontroller board and I am running the SYS/BIOS RTOS.
I was wondering if the bootloader is required on the board when I upload my firmware ...
0
votes
2answers
105 views
tools to study real time scheduling in embedded systems
I worked with GEM5 software simulator where I had the task to change the linux kernel according to the scheduling algorithm that I want to use. No I want to switch to the embedded systems my target ...
-1
votes
2answers
138 views
ARM processor based board for beginers [closed]
I want to buy a ARM microprocessor based board, Can any one tell
which is the best(in terms of functionality) and cost effective?
What hardware/Software tools and cables I need to buy (For
debugging, ...
1
vote
2answers
237 views
basic requirements to be called RTOS for 8051
I want to make an RTOS for 8051 and very confused as what minimum requirements should be followed to make an OS in 8051 as 8051 has very limitted resources in case of RAM and ROM. It is just and ...
1
vote
2answers
91 views
Building an embedded system
I want to build an embedded system with USB and Wifi. I am going to use USB to load configuration and code. Wifi will be used to communicate with other similar systems. I would also like to program at ...
0
votes
2answers
128 views
real time operating system scheduler handling
Should I use IRQ mode to handle scheduler? I mean I use timer interrupt and in interrupt procedure I put a code that saves environment (registers, stac), select a new task and load its environment. I ...
0
votes
2answers
228 views
Simple Task scheduler for ARM Cortex M3 (SAM3N4X)
I've looked for a simple scheduler for the said ARM Cortex M3 for the past two days and although I've found some RTOS solutions I didn't find a standalone task scheduler.
I don't need anything too ...
0
votes
3answers
167 views
Cycle accurate simulation of x86 hardware
Can somebody enlighten me how does CAS software like http://www.ptlsim.org/ work? How do they achieve cycle accuracy if there is neither information how many cycles are used per instruction nor CPU ...
1
vote
1answer
149 views
Porting exisiting embedded source code to RTOS
I have an existing embedded source code which runs directly on a microcontroller with no operating system. I need to port the code to run on a specific RTOS.
Are there any guidelines in where to ...
0
votes
1answer
119 views
Is there an RTOS for normal PCs? [closed]
Is there an RTOS that can be run on a normal PC?
Where normal means something like a laptop with an intel i3 processor and 4 GB RAM.
If no such system exists, is it possible to make one?
0
votes
0answers
51 views
MPServ vs. RTServ Debugging in Green Hills INTEGRITY
When debugging using Green Hills INTEGRITY, what are the pros and cons of using MPServ vs. RTServ?
Thanks,
Dave
0
votes
0answers
27 views
Phantom Input When Running Green Hills Debugger
I'm running on a Marvell Monahans PXA320 under Green Hills INTEGRITY 5.0.10. I'm using MULTI 4.2.3 for development. I'm using an RTSERV connection for debugging, I've been asked to take over a ...
0
votes
1answer
150 views
Robot Middleware (OpenRTM, OROCOS, RSCA, ASEBA etc.) support port to an RTOS(Micrium, QNX, Keil, FreeRTOS?
I have question to ask you.
There are some open source robotic middleware out there that contains some libraries for robotic developers to do I/O works. They are really powerfull tools that save a ...
-2
votes
2answers
64 views
How to prevent Lua using stdio or redirect stdio in a rtos
I am trying to port Lua to ucos on a arm9 cpu. lua source code has usd stdio lib at many place. Yet, no uart is left for stdin/sdout ect in my hardware. More worse, the compile of ADS use the ...
0
votes
1answer
82 views
RTOS Task Management
If a task is attempting to surrender the processor, what steps does a real time operating system need to execute to ensure that another task has the opportunity to run?
7
votes
2answers
194 views
Why is disabling interrupts necessary here?
static void RadioReleaseSPI(void) {
__disable_interrupt();
spiTxRxByteCount &= ~0x0100;
__enable_interrupt();
}
I understand that multiple tasks may attempt to use the SPI resource. ...
5
votes
5answers
554 views
How to use the watchdog timer in a RTOS?
Assume I have a cooperative scheduler in an embedded environment. I have many processes running. I want to utilize the watchdog timer so that I can detect when a process has stopped behaving for any ...
0
votes
0answers
151 views
Green Hills INTEGRITY - Getting up to Speed
I'm an experienced desktop developer, but a new embedded developer who finds myself immersed in the Green Hills INTEGRITY world. Training is not an option due to budget constraints. Is anybody out ...
1
vote
0answers
274 views
Has anyone used the USB to Serial library successfully on ChibiOS?
I'm using the ChibiOS/RT operating system, trying to get the USB to Serial library to work. I have managed to link all the files together and it ran with Yagarto. but I can't seem to even use the ...
0
votes
0answers
116 views
RTOS - what is the best way to schedule send and receive task for different polling times using C
I'm new to RTOS and right now I'm using Freescale MQX, but I was wondering what would be to schedule the following scenario:
I have 4 sensors (or GPIOs) that have different polling times for it to be ...
0
votes
0answers
84 views
What happens behind the scenes (OS) when music process gets interrupted by phone_call process? [closed]
I am trying to understand the various IPC concepts like signalling mechanisms (semaphores), mutual exclusion (mutex) and ISRs with a real-life example.
I am trying to think through what will happen ...
2
votes
3answers
331 views
What is the difference between sprintf and printf for microcontrollers
I know the basic functional differences between printf and sprintf. But, I would like to know about some timing/delay related differences between them both. Apparently, I want to use it in one my ...
0
votes
2answers
166 views
The reason why Task deletion of uCOS should not occur during ISR
I'm modifying some functionalities (mainly scheduling) of uCos-ii.
And I found out that OSTaskDel function does nothing when it is called by ISR.
Though I learned some basic features of OS, I really ...
0
votes
2answers
285 views
Parent and child process
When a parent creates a child using fork(), and then the child exec(),then what will be the address space of child.
is it going to be a new one or a part of parent's address space?
Secondly I also ...
1
vote
1answer
248 views
Memory Pool vs. malloc
I was going through some Real time OS specifications and I read that In RTOS we usually don't prefer to use malloc. The reason for this was given as: for performance issue we should not use malloc as ...
1
vote
1answer
216 views
How does VxWorks prioritize interrupt bottom-halves?
Suppose I have two tasks, 'A' and 'B', of differing priority executing on SMP-supported VxWorks. Both 'A' and 'B' issue a command to an I/O device (such as a disk or NIC) and both block waiting for ...
2
votes
5answers
1k views
What's a good RTOS to use with the LPC1788 microcontroller?
I'm trying to find a free/cheap RTOS that others have found works well with the NXP LPC1788 microcontroller. I was originally planning on using FreeRTOS, but it doesn't seem to support that particular ...
1
vote
1answer
213 views
Signal style IPC for multithreaded linux applications
I have legacy application code written for a real-time operating system (RTOS). Most of the code uses an OS-Specific Inter-Process-Communication (IPC) call, that looks very similar to a signal.
It ...
0
votes
1answer
744 views
what are the the options for real time operating system for ARM cortex architechture? [closed]
I am looking for RTOS for Arm M/R series (developing in C++) ?
Can someone recommend on good RTOS for ARM Cortex-M or R series?
Thank you.
5
votes
4answers
467 views
Prototyping and simulating embedded software on Windows
I am looking for tools and techniques for prototyping (virtual prototyping), simulation, and testing of deeply embedded C code on desktop Windows, including building realistic embedded front panels ...
0
votes
1answer
221 views
How to clear/flush messag queue buffer in VxWorks?
i would like to know, is there any method to flush all messages which are pipelined on 1 msgQId?????



