Re: Adding File descriptors to RTEMS

2020-07-11 Thread Joel Sherrill
On Sat, Jul 11, 2020 at 9:03 AM Gedare Bloom wrote: > Those are all headers in newlib > And they are subtle variations on standard system calls provided in libcsupport. Hopefully the newlib headers are correct for all those would be the first order of business. > > On Fri, Jul 10, 2020 at 4:51

Re: [PATCH] eng: fix typo in coding-file-hdr.rst

2020-07-11 Thread Christian Mauderer
Pushed. Thanks. On 02/07/2020 23:19, G S Niteesh Babu wrote: > --- > eng/coding-file-hdr.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/eng/coding-file-hdr.rst b/eng/coding-file-hdr.rst > index 6355173..cda631a 100644 > --- a/eng/coding-file-hdr.rst > +++ b/eng/codi

Re: [PATCH] Fix for Beaglebone BSP PWM bug

2020-07-11 Thread Christian Mauderer
Hello Fitzsimons, sorry for the late review and thanks Chris for poking me. I have some troubles understanding the patch and the current code: == Regarding your patch: There is no pin GPMC_AD(18) or GPMC_AD(19). That offset will lead you to the pins GPMC_A8 and GPMC_A9. The correct macros to us

Re: [GSoC 2020: Daily Update]: Building EPICS with RTEMS5

2020-07-11 Thread Mritunjay Sharma
On Sat, Jul 11, 2020 at 2:07 AM Gedare Bloom wrote: > On Fri, Jul 10, 2020 at 12:14 PM Mritunjay Sharma > wrote: > > > > Apologies for the delay in response, > > It’s an important update that I want to give to my mentors that my > current development laptop showed some problems yesterday and whi

Re: GSoC 2020: Location for FreeBSD files in RTEMS

2020-07-11 Thread Niteesh G. S.
Hello Christian, On Sat, Jul 11, 2020 at 10:12 PM Christian Mauderer wrote: > Hello Niteesh, > > On 11/07/2020 18:22, Niteesh G. S. wrote: > > Hello, > > > > I acknowledge that 2 days is very little time for a reminder mail but > > please understand > > that this is hampering my progress. > > ye

Re: GSoC 2020: Location for FreeBSD files in RTEMS

2020-07-11 Thread Niteesh G. S.
Hello, I acknowledge that 2 days is very little time for a reminder mail but please understand that this is hampering my progress. Thanks, Niteesh. On Thu, Jul 9, 2020 at 7:32 PM Niteesh G. S. wrote: > Hello, > > The current directory structure I have been using in my GSoC project > for the Fr

Re: [GSoC 2020: Daily Update]: Building EPICS with RTEMS5

2020-07-11 Thread Joel Sherrill
On Sat, Jul 11, 2020, 9:46 AM Heinz Junkes wrote: > It's not my experience. > > I made my first attempts with RTEMS5 for a beatnik-board (MVME6100). > For this I created the BSP like this: > > cd build/b-beatnik > ../../rtems/configure --enable-maintainer-mode > --prefix=$HOME/RTEMS/rtems-5

Re: [GSoC 2020: Daily Update]: Building EPICS with RTEMS5

2020-07-11 Thread Heinz Junkes
It's not my experience. I made my first attempts with RTEMS5 for a beatnik-board (MVME6100). For this I created the BSP like this: cd build/b-beatnik ../../rtems/configure --enable-maintainer-mode --prefix=$HOME/RTEMS/rtems-5 --target=powerpc-rtems5 --enable-rtemsbsp="beatnik" --enable-posi

Re: Need help in understanding some of the existing code in RTEMS

2020-07-11 Thread Gedare Bloom
On Sat, Jul 11, 2020 at 12:31 AM Richi Dubey wrote: > > Hi, > > I noticed that we have defined all the scheduler non entry-point functions in > https://git.rtems.org/rtems/tree/cpukit/score/src/scheduleredfsmp.c as static > inline, which makes them invisible inside the doxygen comments > (https

Re: Adding File descriptors to RTEMS

2020-07-11 Thread Gedare Bloom
Those are all headers in newlib On Fri, Jul 10, 2020 at 4:51 PM Eshan Dhawan wrote: > > Hello everyone, > As a part of my GSOC project I will be adding file descriptors > List of some missing methods : > https://docs.google.com/document/d/1n-JOFUbFn6V1kViAGWsEGbVHL9MxlMyKP0BbZhEA1Rs/edit > > Whe