Help with RTEMS C User’s Guide

2017-01-23 Thread Tanu Hari Dixit
Hello Devs, I have been trying to setup a makefile so as to execute the various code snippets given in the C User's guide for RTEMS (https://docs.rtems.org/doc- current/share/rtems/html/c_user/index.html#SEC_Contents) and have failed miserably. Can you please help me with this? I have made a

Re: [PATCH 1/2] Adding ARM VFP V2 support

2017-01-23 Thread Sebastian Huber
In this case the FPU is no longer in full-compliance with EEE 754. I don't think this should be set by the startup code depending on some BSP optimization options. I guess the paranoia test fails if you enable this. On 23/01/17 15:43, Kirspel, Kevin wrote: Yes Kevin Kirspel Electrical

Re: Help regarding contributing to RTEMS

2017-01-23 Thread Joel Sherrill
On Sun, Jan 22, 2017 at 10:25 AM, vathsa sri wrote: > Hello !! > > My name is Sri Vathsa. I am sophomore at IIT Roorkee, India, pursuing my > B.Tech in Electronics and Communication. I am new to open source and would > like to contribute to RTEMS . I have been using

[PATCH] bsps/sparc: Remove tlib clock driver

2017-01-23 Thread Sebastian Huber
This driver lacked several features and cannot support SMP configurations. Use the standard clock driver instead. --- c/src/lib/libbsp/sparc/leon3/Makefile.am | 5 +- c/src/lib/libbsp/sparc/leon3/clock/ckinit.c | 10 - c/src/lib/libbsp/sparc/shared/include/tlib.h | 8 -

RE: [PATCH 1/2] Adding ARM VFP V2 support

2017-01-23 Thread Kirspel, Kevin
Yes Kevin Kirspel Electrical Engineer - Sr. Staff Idexx Roswell 235 Hembree Park Drive Roswell GA 30076 Tel: (770)-510- ext. 81642 Direct: (770)-688-1642 Fax: (770)-510-4445 -Original Message- From: Sebastian Huber [mailto:sebastian.hu...@embedded-brains.de] Sent: Monday, January

Re: [PATCH 1/2] Adding ARM VFP V2 support

2017-01-23 Thread Sebastian Huber
On 23/01/17 14:51, Kevin Kirspel wrote: +#ifdef __FAST_MATH__ + /* Enable Fast FPU options */ + mov r0, #(3 << 24) + vmsr FPSCR, r0 +#endif This define is related to the GCC fast-math optimization option. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4,

[PATCH] sparc: Relax CPU_STACK_ALIGNMENT

2017-01-23 Thread Sebastian Huber
Close #2352. --- cpukit/score/cpu/sparc/rtems/score/cpu.h | 15 +++ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/cpukit/score/cpu/sparc/rtems/score/cpu.h b/cpukit/score/cpu/sparc/rtems/score/cpu.h index 6d8e1f9..a59fc36 100644 ---

[PATCH 1/2] Adding ARM VFP V2 support

2017-01-23 Thread Kevin Kirspel
--- c/src/lib/libbsp/arm/shared/start/start.S | 14 -- cpukit/score/cpu/arm/rtems/score/arm.h| 6 ++ 2 files changed, 18 insertions(+), 2 deletions(-) mode change 100644 => 100755 c/src/lib/libbsp/arm/shared/start/start.S mode change 100644 => 100755

[PATCH 2/2] Enable/Disable vector routines now check for a valid vector. Without these guards, the Enable/Disable vector routines will not work with the interrupt server

2017-01-23 Thread Kevin Kirspel
--- c/src/lib/libbsp/arm/lpc32xx/irq/irq.c | 20 1 file changed, 12 insertions(+), 8 deletions(-) mode change 100644 => 100755 c/src/lib/libbsp/arm/lpc32xx/irq/irq.c diff --git a/c/src/lib/libbsp/arm/lpc32xx/irq/irq.c b/c/src/lib/libbsp/arm/lpc32xx/irq/irq.c old mode