Re: AArch64 support and sharing of various drivers

2020-09-03 Thread Christian Mauderer
On 04/09/2020 05:12, Chris Johns wrote: > On 4/9/20 12:43 pm, Joel Sherrill wrote: >> On Thu, Sep 3, 2020, 6:58 AM Christian Mauderer >> > > wrote: >> >> Hello Kinsey, >> >> On 01/09/2020 23:56, Kinsey Moore wrote: >> > Hi, >> > >> >

Re: [PATCH v2] rtems: Add rtems_task_create_from_config()

2020-09-03 Thread Chris Johns
On 3/9/20 10:08 pm, Sebastian Huber wrote: > > On 03/09/2020 04:08, Chris Johns wrote: >> On 3/9/20 2:09 am, Sebastian Huber wrote: >>> In contrast to rtems_task_create() this function creates a task with a >>> user-provided task storage area.  The new create function uses a >>> configuration stru

Re: AArch64 support and sharing of various drivers

2020-09-03 Thread Chris Johns
On 4/9/20 12:43 pm, Joel Sherrill wrote: > On Thu, Sep 3, 2020, 6:58 AM Christian Mauderer > > wrote: > > Hello Kinsey, > > On 01/09/2020 23:56, Kinsey Moore wrote: > > Hi, > > > > I’ve been working on proper AArch64 support for R

Re: AArch64 support and sharing of various drivers

2020-09-03 Thread Joel Sherrill
On Thu, Sep 3, 2020, 6:58 AM Christian Mauderer < christian.maude...@embedded-brains.de> wrote: > Hello Kinsey, > > On 01/09/2020 23:56, Kinsey Moore wrote: > > Hi, > > > > I’ve been working on proper AArch64 support for RTEMS > > That's great. It means good raspberry pi 4 support ;-) > > > (versu

Re: Introducing the Strong APA Scheduler

2020-09-03 Thread Richi Dubey
Hi, Any views on this? On Fri, Aug 28, 2020 at 7:42 PM Richi Dubey wrote: > Hi, > > I am happy to announce the release of the final version of the Strong APA > scheduler. > > The documentation for the scheduler is live at > https://richidubey.github.io/Strong-APA-Documentation/html/ > > Improve

[PATCH] display/disp_hcms29xx fix string turncation warning

2020-09-03 Thread Aschref Ben-Thabet
From: Aschref Ben Thabet strncpy is unsafe if the terminating NULL is missing, as it may copy more characters than fit in the destination area Replace it by the safer strlcpy() and fix the string turncation warnings. --- bsps/shared/dev/display/disp_hcms29xx.c | 3 +-- 1 file changed, 1 inserti

Re: [PATCH v2] rtems: Add rtems_task_create_from_config()

2020-09-03 Thread Sebastian Huber
On 03/09/2020 04:08, Chris Johns wrote: On 3/9/20 2:09 am, Sebastian Huber wrote: In contrast to rtems_task_create() this function creates a task with a user-provided task storage area. The new create function uses a configuration structure instead of individual parameters. Add RTEMS_TASK_ST

Re: AArch64 support and sharing of various drivers

2020-09-03 Thread Christian Mauderer
Hello Kinsey, On 01/09/2020 23:56, Kinsey Moore wrote: > Hi, > > I’ve been working on proper AArch64 support for RTEMS That's great. It means good raspberry pi 4 support ;-) > (versus running > 32-bit ARM RTEMS behind a bootloader or JTAG device that switches the > CPU to AArch32 mode) and whil

Re: [PATCH v2 0/2] Adds QEP driver to Beaglebone BSP

2020-09-03 Thread James Fitzsimons
Hi all, I realise people have been busy with the recent release etc so I hadn't followed this up. Are the changes I made in this new version sufficient or is there still work to do on this driver? Cheers James On Tue, 25 Aug 2020, 21:57 James Fitzsimons, wrote: > This second version of the pat