The xenomai tag has no wiki summary.
1
vote
1answer
16 views
Periodic thread fails real-time in Xenomai
I'm creating a periodic thread which outputs a square signal on an analogic output. I'm using Posix Skin and Analogy from the Xenomai API.
I tested the real-time performance of my code using an ...
0
votes
0answers
26 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 ...
0
votes
1answer
87 views
Why do I have undefined references when linking Xenomai programs for ARM?
I'm trying to cross compile C code for an embedded application that is running Xenomai (2.5.6 / Linux 2.6.35.9). I started with Xenomai examples and tried to compile them using their Makefiles, but ...
0
votes
0answers
110 views
Xenomai patched kernel: Undefined references
I just patched my kernel (on a virtual machine) with Xenomai,and I am trying to build the examples supplied with the package. I keep getting undefined references, and I have put all necessary linker ...
0
votes
0answers
109 views
Xenomai kernel can not boot
I am trying to boot an embedded disk-less system. I succeeded with normal linux kernel 2.6.32.59 but we want to make this work with Xenomai so I downloaded the linux kernel 2.6.35.13 and Xenomai ...
0
votes
1answer
129 views
object file missing function symbol
I am currently writing a short test app.
The compilation gives me these errors :
CC main.c
Building ../bin/pmono
./main.o:(.data+0x18): undefined reference to `busy'
./main.o:(.data+0x58): undefined ...
0
votes
0answers
100 views
Where is APM on linux kernel 2.6.38.8 configuration?
I follow this doc.
It says I should turn off the APM module on linux kernel 2.6.38.8.
But I can't find it under Power management and ACPI options.
How to turn off APM?
Is APM the same as ...
1
vote
1answer
350 views
Real time thread priority in user space
From: http://www.xenomai.org/documentation/xenomai-2.3/pdf/Life-with-Adeos-rev-B.pdf
The above behaviour is to be opposed to what happens with RTAI/LXRT for instance, where threads migrating to ...
3
votes
1answer
2k views
Disadvantage of preempt_rt
the target hardware platform has limited horsepower, and/or you want
the real-time job to put the smallest possible overhead on your
system. This is where dual kernels are usually better than a ...
1
vote
1answer
156 views
What code should NOT be written as a real time one?
In Xenomai's API of Posix skin, I find the following:
POSIX skin.
Clocks and timers services.
Condition variables services.
Interruptions management services.
Message queues services.
...
0
votes
1answer
284 views
How to run an infinite loop in real time - Linux?
I wrote a hello world program with an infinite loop with Xenomai API, as follows:
This gets terminated soon.
I actually wanted to test this program's real time latency through latencytop.
How to run ...
0
votes
1answer
319 views
linux/bin/ld: cannot find -lrtdk Xenomai
/usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/ld: cannot find -lrtdk
I can't find anything regarding this in the ld's manpage.
...
2
votes
0answers
202 views
Can not see Kernel Image On Boot-Grub Menu Linux
I am trying to make a real time kernel by patching Xenomai framework: Xenomai 2.6.0 and Kernel 2.6.38.8
I patched it successfully. And was able to build the kernel:
make
make modules
make ...
0
votes
2answers
381 views
How to use xenomai API?
I install xenomai-runtime on ubuntu 11.04.
Is that finish installing of xenomai?
I found that I can't find xenomai's kernel and boot from it.
So my question are:
1.How to boot xenomai's kernel?
...
1
vote
1answer
187 views
Xenomai on Ubuntu: vxworks skin disabled?
i am new to Xenomai so please forgive me if my question is silly
i have installed xenomai 2.4.8 in my ubuntu 11.04 with the command
apt-get install libxenomai-dev
Now i want test a simple vxWorks ...
2
votes
1answer
257 views
Is there a safe way to call gettimeofday() from a Xenomai real time thread?
I'm running a Xenomai real time thread that sometimes needs to call gettimeofday(), in order to find out what the current time is according to ptpd.
However, doing that appears to be unsafe: in ...
2
votes
1answer
720 views
Real-time benchmark between preempt_rt, Xenomai and RTAI
I need to compare performance between the preempt_rt patches, Xenomai and RTAI. They each have their own benchmarks but they don't give similar results and not all benchmarks are available in all ...
3
votes
4answers
557 views
Function which takes a pthread as input and suspends it
I'm trying to port the real time Thread_Metric from ExpressLogic in POSIX, in order to benchmark PREEMPT_RT patches for Linux, Xenomai and RTAI for my thesis. They provide a C source file with the ...
21
votes
2answers
155k views
Linux error while loading shared libraries: cannot open shared object file: No such file or directory
Program is part of the Xenomai test suite, cross-compiled from Linux PC into Linux+Xenomai ARM toolchain.
# echo $LD_LIBRARY_PATH ...
2
votes
4answers
7k views
How to compile and install a Linux kernel into an ARM kit
I have an ARM kit beside me and a Linux kernel source code patched with Xenomai on my machine. I understand I can send data to the kit through an USB cable and a (windows-based, of course) software, ...