RE: NXView

2020-07-01 Thread Nakamura, Yuuichi (Sony)
Thanks for detailed comment. I'll study streams.h to apply it for the note data interface. > -Original Message- > From: Gregory Nutt > Sent: Thursday, July 2, 2020 11:05 AM > To: dev@nuttx.apache.org > Subject: Re: NXView > > > > It's a reasonable function partitioning. How about we de

Re: From 8.2 to 9.x??

2020-07-01 Thread Brennan Ashton
You are probably asking about the "tools" repo where you can find kconfig-frontends and other utilities? Because those are not really part of the OS but are rather utilities for building it and many of them have GPL or other licenses that are not compatible with Apache, they are still hosted on bit

Re: From 8.2 to 9.x??

2020-07-01 Thread Disruptive Solutions
I scanned through the wiki off 9.1 and could it be I am missing "tools" as a package which is used in previous releases? Maybe it is best, as a dev/user, I just have to try and clone the 9.1 branch (apps and nuttx) and see if my apps and drivers (which have some fixes in 8.2) are working and that

Build failed in Jenkins: NuttX-Nightly-Build #208

2020-07-01 Thread Apache Jenkins Server
See Changes: -- [...truncated 307.73 KB...] Building NuttX... Normalize sim/minibasic Configur

RE: NXView

2020-07-01 Thread Xiang Xiao
Yes, lib_outstream_s is a better candidate. BTW, the buffer may always need before the hardware transport driver finish the initialization otherwise the important initial activity will lost. > -Original Message- > From: Gregory Nutt > Sent: Thursday, July 2, 2020 10:05 AM > To: dev@nuttx

Re: NXView

2020-07-01 Thread Gregory Nutt
It's a reasonable function partitioning. How about we define an interface like syslog_channel_s between note and driver? So we can plug in the different transport like syslog. The correct way to redirect streams within the OS is to use NuttX stream interfaces.  Forget about systlog channels

RE: NXView

2020-07-01 Thread Nakamura, Yuuichi (Sony)
Thanks for your comment. Then it may be better to separate the buffer management logic into another file like sched_note_buffer.c. I'll try it. > -Original Message- > From: Xiang Xiao > Sent: Wednesday, July 1, 2020 10:54 PM > To: dev@nuttx.apache.org > Subject: RE: NXView > > It's a re

Re: From 8.2 to 9.x??

2020-07-01 Thread Brennan Ashton
In addition to what Anthony said I would recommend trying to base your port off of the releases/9.1 branch, there is an RC1 release right now that I would expect to be the next release or very close to it. --Brennan On Wed, Jul 1, 2020 at 4:46 PM Anthony Merlino wrote: > > > > > I just went thro

Re: From 8.2 to 9.x??

2020-07-01 Thread Anthony Merlino
> > I just went through this with my codebase. All in all, it hasn't been too > bad. I shouldn't have said that. All in all, it has been a breeze. Sure a few minor snags, but that's unavoidable. I have been waiting for the dust to settle down... > I really should be giving a big thank you to th

Re: From 8.2 to 9.x??

2020-07-01 Thread Anthony Merlino
Ben, I just went through this with my codebase. All in all, it hasn't been too bad. I think most of your answers can be found: here for 9.0 https://cwiki.apache.org/confluence/display/NUTTX/NuttX+9.0 and here for 9.1 https://cwiki.apache.org/confluence/display/NUTTX/NuttX+9.1 I'll point out a f

From 8.2 to 9.x??

2020-07-01 Thread Disruptive Solutions
I have been waiting for the dust to settle down... I am still using 8.2 (BSD). Is it ready to go and migratie to a 9.x version? Is this still the incubator Github? Are there "user changes" which I have to know? Make menuconfig still works? Are drivers ported and tested? Can I migratie easily? Etc e

Re: Help with Apache Github Invite

2020-07-01 Thread Anthony Merlino
Justin, According to Github, I have 2FA enabled. It's been enabled for months. As has my linking of ASF and Github user name. You need to wait until you have been added to the ASF gitHub account before > doing the last step. > What are you calling the last step? What do I have to do to be added

Re: Help with Apache Github Invite

2020-07-01 Thread Justin Mclean
HI, You need to wait until you have been added to the ASF gitHub account before doing the last step. The usual issue is not setting up 2FA. Thanks, Justin

Re: Help with Apache Github Invite

2020-07-01 Thread Abdelatif Guettouche
The necessary steps are here: https://cwiki.apache.org/confluence/display/NUTTX/Accessing+Apache+GitHub+as+a+Committer On Wed, Jul 1, 2020 at 10:52 PM Brennan Ashton wrote: > > Anthony, > Have you been able to use this and do you see the three checkboxes? > https://gitbox.apache.org/setup/ > > On

Re: Help with Apache Github Invite

2020-07-01 Thread Brennan Ashton
Anthony, Have you been able to use this and do you see the three checkboxes? https://gitbox.apache.org/setup/ On Wed, Jul 1, 2020 at 2:42 PM Anthony Merlino wrote: > > Hi, > > I still can't seem to get an invite from the Apache Github account, despite > having 2FA enabled on Github, and linking m

Re: Help with Apache Github Invite

2020-07-01 Thread Gregory Nutt
I still can't seem to get an invite from the Apache Github account, despite having 2FA enabled on Github, and linking my Github user name through the self-service portal. I have had this problem since we moved to Apache, but I haven't needed access until now. Who is the right person to ask wit

Help with Apache Github Invite

2020-07-01 Thread Anthony Merlino
Hi, I still can't seem to get an invite from the Apache Github account, despite having 2FA enabled on Github, and linking my Github user name through the self-service portal. I have had this problem since we moved to Apache, but I haven't needed access until now. Who is the right person to ask wi

Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release

2020-07-01 Thread Gregory Nutt
Comparing with V9.0: NuttX 9.0 $ arm-none-eabi-size nuttx textdata bss dec hex filename 68624 1042496 71224 11638 nuttx NuttShell (NSH) NuttX-9.0.0 nsh> free total used freelargest Umem: 192976 7536 185440

Re: CAN driver and critical section use

2020-07-01 Thread Gregory Nutt
I wonder if it is right to call nxsem_wait while in critical section? Yes, it is fine to do that.  The OS will exit the critical section while waiting.

Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release

2020-07-01 Thread Alan Carvalho de Assis
Hi Brennan, My vote: +1 Tested on STM32F4Discovery. Comparing with V9.0: NuttX 9.0 $ arm-none-eabi-size nuttx textdata bss dec hex filename 68624 1042496 71224 11638 nuttx NuttShell (NSH) NuttX-9.0.0 nsh> free total used freelarge

CAN driver and critical section use

2020-07-01 Thread Oleg Evseev
Hi all, I wonder if it is right to call nxsem_wait while in critical section? Regardless of the answer I also wonder why can_read() and can_write() enter_critical_section before accessing the received FIFO, but can_poll doesn't? Can this be related to getting into DEBUGASSERT(pholder != NULL) in

script to validate NuttX release candidates

2020-07-01 Thread Adam Feuer
Hi, In case anyone's interested, I created a script to validate NuttX release candidates, it automates some of the steps described in Validating a staged release . It downloads the files, checks the SHA512 and GPG signa

Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release

2020-07-01 Thread Adam Feuer
+1 Ran through the release checklist, SHAs ok, GPG sigs ok, required files there. I built nuttx for SAMA5D2-XULT (SAMA5D27) and loaded it, it boots and works ok. -adam On Wed, Jul 1, 2020 at 4:41 AM Jerpelea, Alin wrote: > Hi, > > +1 from me > > * > hashes match > * > LICENSE, DISCLAIMER a

RE: NXView

2020-07-01 Thread Xiang Xiao
It's a reasonable function partitioning. How about we define an interface like syslog_channel_s between note and driver? So we can plug in the different transport like syslog. > -Original Message- > From: Nakamura, Yuuichi (Sony) > Sent: Wednesday, July 1, 2020 3:01 PM > To: dev@nuttx.a

Re: Board report due by July 1st

2020-07-01 Thread Abdelatif Guettouche
> Thanks, the changes look good. I'm away from my computer today; could you > submit the report? I did so. We've still got time to change anything if need be. On Wed, Jul 1, 2020 at 12:54 PM Nathan Hartman wrote: > > On Wed, Jul 1, 2020 at 7:23 AM Abdelatif Guettouche < > abdelatif.guettou...@

Re: Board report due by July 1st

2020-07-01 Thread Nathan Hartman
On Wed, Jul 1, 2020 at 7:23 AM Abdelatif Guettouche < abdelatif.guettou...@gmail.com> wrote: > Hi, > > I filled in some blanks. The report is due today but we still have > some time for last minute changes. Thanks, the changes look good. I'm away from my computer today; could you submit the rep

Sv: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release

2020-07-01 Thread Jerpelea, Alin
Hi, +1 from me * hashes match * LICENSE, DISCLAIMER and NOTICE exist * build spresense board and seems ok Från: Abdelatif Guettouche Skickat: den 1 juli 2020 14:35 Till: dev@nuttx.apache.org Ämne: Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release H

Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC1 release

2020-07-01 Thread Abdelatif Guettouche
Hi, +1 for me, I checked: - Incubating in name - Signatures and hashes for both TARs are OK - LICENSE, DISCLAIMER and NOTICE exist - Can build from source. Thank you for your work, Brennan! On Tue, Jun 30, 2020 at 6:58 AM Brennan Ashton wrote: > > Hello all, > Apache NuttX (Incubating) 9.1.0 has

Re: Board report due by July 1st

2020-07-01 Thread Abdelatif Guettouche
Hi, I filled in some blanks. The report is due today but we still have some time for last minute changes. On Mon, Jun 22, 2020 at 4:03 PM Nathan Hartman wrote: > > We are scheduled to submit our board report by July 1st. > > I have created a Confluence page [1] with some initial content. Please