Jenkins build is back to normal : NuttX-Nightly-Build #214

2020-07-08 Thread Apache Jenkins Server
See

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

2020-07-08 Thread Nathan Hartman
On Tue, Jul 7, 2020 at 8:40 PM Brennan Ashton wrote: > Apache NuttX (Incubating) 9.1.0 has been staged under [1] and it's time > to vote on accepting it for release. If approved we will seek final > release approval from the IPMC. Voting will be open for 72hr. > > This RC replaces RC1 which was ne

Re: USB Keyboard device node not removed upon disconnection on RX65N USB Host

2020-07-08 Thread Alan Carvalho de Assis
Hi Anjana, Try to enable the USB debug to see if the usbhost_destroy() is called to unregister the device: /* Unregister the driver */ uinfo("Unregister driver\n"); usbhost_mkdevname(priv, devname); unregister_driver(devname); /* Release the device name used by this connection */ usb

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

2020-07-08 Thread Alan Carvalho de Assis
Great work Brennan! My vote: +1 $ ls -l nuttx* -rwxrwxr-x 1 alan alan 176192 Jul 8 12:33 nuttx -rwxrwxr-x 1 alan alan 69792 Jul 8 12:33 nuttx.bin -rw-rw-r-- 1 alan alan 196384 Jul 8 12:33 nuttx.hex $ arm-none-eabi-size nuttx textdata bss dec hex filename 69688 104

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

2020-07-08 Thread Adam Feuer
+1 Thanks Brennan! I used the checkrelease.sh script to check hashes, signatures, required files, and that sim:nsh builds. See below for output. Manually built and ran the release for sama5d2-xult:nsh on the SAMA5D2-Xplained Ultra board. -adam ./tools/checkrelease.sh --gpg-output --release 9.1.

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

2020-07-08 Thread Jerpelea, Alin
+1 I checked hashes, signatures, required files Manually build spresense nsh config and checked that all is ok Thanks Brennan! //Alin Från: Adam Feuer Skickat: den 8 juli 2020 19:00 Till: dev@nuttx.apache.org Ämne: Re: [VOTE] Apache NuttX 9.1.0 (incubating) RC

Re: driver question about memory and calloc

2020-07-08 Thread Adam Feuer
The kmm_malloc() also has the same effect of making it work. I think what's going on is that the transfer is passing a SDMA Buffer Boundary— they are 4kb (configurable, but that's the default). SDMA pauses when passing one, and needs to be reenabled by software. I can see the SDMMC_INT_DINT being

Re: driver question about memory and calloc

2020-07-08 Thread Adam Feuer
The problem was that the interrupts the driver was waiting for (wait interrupts) did not include SDMMC_INT_DINT, the DMA Boundary Pause interrupt. The calloc() / kmm_memalign() memory allocation put the buffer in a place where the SDMA Buffer Boundary was not encountered, so the SDMA Boundary Paus

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

2020-07-08 Thread Apache Jenkins Server
See Changes: -- [...truncated 405.54 KB...] Configuring... Copy files Select CONFIG_HOST_LINUX=y Refreshing... Building NuttX... --2020-07-09 05:30:20-- https://github.com

Re: close() socket called in second thread combined with reconnect kills eth (stm32h743zi)

2020-07-08 Thread Reto Gähwiler
Good Morning Everyone, First of all, thanks for your responses. We eventually will change the design and handle recv and close in the same pthread and follow your advices, Xiang Xiao / Nathan Hartman. @Gregory Nutt: Yes, I was meaning the same pthread. Technically, the pthread calling the clo