[RESULT] [VOTE] Release Apache NuttX (Incubating) 10.1.0 [RC1]

2021-05-08 Thread Alin Jerpelea
Hi,



The vote closes now as over 72hr have passed. The vote PASSES with 6

(+4 non-binding) votes from the PPMC,

0 (+1 binding) vote from the IPMC,

2 (+0 non-binding) votes from the developer community,

No further +1, 0 or -1 votes.



The vote thread:

[1]

https://lists.apache.org/thread.html/ra60b4173945cfd2a33924cc8d707863039c1764a7ea8e47a1d8502a0%40%3Cdev.nuttx.apache.org%3E



I will now bring the vote to gene...@incubator.apache.org to get

approval by the IPMC.

If this vote passes also, the release is accepted and will be

published.



Thanks,

Alin Jerpelea


Re: CAN example crashes

2021-05-08 Thread murat tologlu
Hi,

Is there any description somewhere about this example ?

Thanks,
Murat

On 2021/05/07 17:49:05, Alan Carvalho de Assis  wrote: 
> Hi Tim,
> 
> Try to enable the debug in the menuconfig:
> 
> Build Setup  --->
> Debug Options  --->
> [*] Enable Debug Features
> [*]   Enable Error Output
> [*] Enable Warnings Output
> [*]   Enable Informational Debug Output
> 
> [*]   CAN Debug Features
> [*] CAN Error Output
> [*] CAN Warnings Output
> [*] CAN Informational Output
> 
> BR,
> 
> Alan
> 
> On 5/7/21, Tim  wrote:
> > Hi,
> >
> >
> >
> > SAMA5D27 (custom board) - trying to complete the port and also check that
> > the CAN interface works on the board, so I'm trying to use the CAN example
> > app.
> >
> >
> >
> > The drivers appear to be registered (I see /dev/can0 and /dev/can1) but the
> > CAN example app crashes when trying to open /dev/can0 and I can't see why.
> >
> >
> >
> > I am hindered in debugging this fully as yet since:
> >
> >
> >
> > a.  I am new to Nuttx and haven't yet sussed how to enable any low level
> > debug-type stuff (I have used menuconfig to enable anything that seems to
> > be
> > related but I'm sure I missed stuff)
> > b.  I haven't yet coerced my Eclipse IDE (under Windows 10, but code
> > configured and compiled using Windows WSL) to "see" the source code
> > properly
> > to enable me to insert breakpoints (Segger J-link). Not wedded to Eclipse,
> > but it is a known entity for me and at least downloads/runs/debugs the
> > board!)
> >
> >
> >
> > Can anyone point me in the direction of why, or a way to find out why, the
> > call to open the device would crash the board rather than return an error?
> > Other devices (such as Flexcom USARTs open OK and work - well, after I
> > fixed
> > some arch issues for Flexcoms on the SAMA5 anyway!!). The board-specific
> > code (sam_can.c) I am using is based on the code for the sama5d2-xult board
> > and seems pretty trivial, and largely similar to many other architectures
> > and boards.
> >
> >
> >
> > Many thanks,
> >
> >
> >
> > Tim.
> >
> >
> >
> >
> 


Re: CAN example crashes

2021-05-08 Thread Gregory Nutt




Is there any description somewhere about this example ?


There is some in apps/examples/README.md, but not a lot of info.


Re: CAN example crashes

2021-05-08 Thread Tim Hardisty
>> Is there any description somewhere about this example ?
>>
>There is some in apps/examples/README.md, but not a lot of info.

Not much, no, but the example code is pretty self-explanatory!




Re: CAN example crashes

2021-05-08 Thread murat tologlu
Thanks for all the answers. I look forward to try Alan's next tutorial :)
BR,

On 2021/05/08 16:24:51, Tim Hardisty  wrote: 
> >> Is there any description somewhere about this example ?
> >>
> >There is some in apps/examples/README.md, but not a lot of info.
> 
> Not much, no, but the example code is pretty self-explanatory!
> 
> 
> 


Re: CAN example crashes

2021-05-08 Thread Disruptive Solutions
I use the CAN solution from NuttX with the SPI MCP2515. Made my own
referenceboard for it. Is doing miliions of messages with multiple nodes.
Works like a charm!

Ben

Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :

> Thanks for all the answers. I look forward to try Alan's next tutorial :)
> BR,
>
> On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > >> Is there any description somewhere about this example ?
> > >>
> > >There is some in apps/examples/README.md, but not a lot of info.
> >
> > Not much, no, but the example code is pretty self-explanatory!
> >
> >
> >
>


Re: CAN example crashes

2021-05-08 Thread Grr
Hello.

What protocol do you use on top of CAN?

El sáb., 8 de may. de 2021 12:03 PM, Disruptive Solutions <
disruptivesolution...@gmail.com> escribió:

> I use the CAN solution from NuttX with the SPI MCP2515. Made my own
> referenceboard for it. Is doing miliions of messages with multiple nodes.
> Works like a charm!
>
> Ben
>
> Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :
>
> > Thanks for all the answers. I look forward to try Alan's next tutorial :)
> > BR,
> >
> > On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > > >> Is there any description somewhere about this example ?
> > > >>
> > > >There is some in apps/examples/README.md, but not a lot of info.
> > >
> > > Not much, no, but the example code is pretty self-explanatory!
> > >
> > >
> > >
> >
>


RE: CAN example crashes

2021-05-08 Thread disruptivesolutionsnl
You mean CAN FD or the CAN V2.0B? I use the standard with Extended ID's. 
(MCP2515 / SPI) for automotive interaction.

https://ww1.microchip.com/downloads/en/DeviceDoc/MCP2515-Stand-Alone-CAN-Controller-with-SPI-20001801J.pdf

Ben

-Oorspronkelijk bericht-
Van: Grr  
Verzonden: zaterdag 8 mei 2021 19:09
Aan: dev@nuttx.apache.org
Onderwerp: Re: CAN example crashes

Hello.

What protocol do you use on top of CAN?

El sáb., 8 de may. de 2021 12:03 PM, Disruptive Solutions < 
disruptivesolution...@gmail.com> escribió:

> I use the CAN solution from NuttX with the SPI MCP2515. Made my own 
> referenceboard for it. Is doing miliions of messages with multiple nodes.
> Works like a charm!
>
> Ben
>
> Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :
>
> > Thanks for all the answers. I look forward to try Alan's next 
> > tutorial :) BR,
> >
> > On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > > >> Is there any description somewhere about this example ?
> > > >>
> > > >There is some in apps/examples/README.md, but not a lot of info.
> > >
> > > Not much, no, but the example code is pretty self-explanatory!
> > >
> > >
> > >
> >
>



RE: CAN example crashes

2021-05-08 Thread disruptivesolutionsnl
Maybe my video from some while ago CAN help ?
https://www.youtube.com/watch?v=sSpNrP0DUI4

Ben

-Oorspronkelijk bericht-
Van: Grr  
Verzonden: zaterdag 8 mei 2021 19:09
Aan: dev@nuttx.apache.org
Onderwerp: Re: CAN example crashes

Hello.

What protocol do you use on top of CAN?

El sáb., 8 de may. de 2021 12:03 PM, Disruptive Solutions < 
disruptivesolution...@gmail.com> escribió:

> I use the CAN solution from NuttX with the SPI MCP2515. Made my own 
> referenceboard for it. Is doing miliions of messages with multiple nodes.
> Works like a charm!
>
> Ben
>
> Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :
>
> > Thanks for all the answers. I look forward to try Alan's next 
> > tutorial :) BR,
> >
> > On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > > >> Is there any description somewhere about this example ?
> > > >>
> > > >There is some in apps/examples/README.md, but not a lot of info.
> > >
> > > Not much, no, but the example code is pretty self-explanatory!
> > >
> > >
> > >
> >
>



Re: CAN example crashes

2021-05-08 Thread Grr
No, I mean on top of that: CANopen, UAVCAN, other?

El sáb., 8 de may. de 2021 12:44 PM, 
escribió:

> You mean CAN FD or the CAN V2.0B? I use the standard with Extended ID's.
> (MCP2515 / SPI) for automotive interaction.
>
>
> https://ww1.microchip.com/downloads/en/DeviceDoc/MCP2515-Stand-Alone-CAN-Controller-with-SPI-20001801J.pdf
>
> Ben
>
> -Oorspronkelijk bericht-
> Van: Grr 
> Verzonden: zaterdag 8 mei 2021 19:09
> Aan: dev@nuttx.apache.org
> Onderwerp: Re: CAN example crashes
>
> Hello.
>
> What protocol do you use on top of CAN?
>
> El sáb., 8 de may. de 2021 12:03 PM, Disruptive Solutions <
> disruptivesolution...@gmail.com> escribió:
>
> > I use the CAN solution from NuttX with the SPI MCP2515. Made my own
> > referenceboard for it. Is doing miliions of messages with multiple nodes.
> > Works like a charm!
> >
> > Ben
> >
> > Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :
> >
> > > Thanks for all the answers. I look forward to try Alan's next
> > > tutorial :) BR,
> > >
> > > On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > > > >> Is there any description somewhere about this example ?
> > > > >>
> > > > >There is some in apps/examples/README.md, but not a lot of info.
> > > >
> > > > Not much, no, but the example code is pretty self-explanatory!
> > > >
> > > >
> > > >
> > >
> >
>
>


RE: CAN example crashes

2021-05-08 Thread disruptivesolutionsnl
Non of these. I do not need this overhead?

Ben

-Oorspronkelijk bericht-
Van: Grr  
Verzonden: zaterdag 8 mei 2021 19:57
Aan: dev@nuttx.apache.org
Onderwerp: Re: CAN example crashes

No, I mean on top of that: CANopen, UAVCAN, other?

El sáb., 8 de may. de 2021 12:44 PM, 
escribió:

> You mean CAN FD or the CAN V2.0B? I use the standard with Extended ID's.
> (MCP2515 / SPI) for automotive interaction.
>
>
> https://ww1.microchip.com/downloads/en/DeviceDoc/MCP2515-Stand-Alone-C
> AN-Controller-with-SPI-20001801J.pdf
>
> Ben
>
> -Oorspronkelijk bericht-
> Van: Grr 
> Verzonden: zaterdag 8 mei 2021 19:09
> Aan: dev@nuttx.apache.org
> Onderwerp: Re: CAN example crashes
>
> Hello.
>
> What protocol do you use on top of CAN?
>
> El sáb., 8 de may. de 2021 12:03 PM, Disruptive Solutions < 
> disruptivesolution...@gmail.com> escribió:
>
> > I use the CAN solution from NuttX with the SPI MCP2515. Made my own 
> > referenceboard for it. Is doing miliions of messages with multiple nodes.
> > Works like a charm!
> >
> > Ben
> >
> > Op za 8 mei 2021 6:30 p.m. schreef murat tologlu :
> >
> > > Thanks for all the answers. I look forward to try Alan's next 
> > > tutorial :) BR,
> > >
> > > On 2021/05/08 16:24:51, Tim Hardisty  wrote:
> > > > >> Is there any description somewhere about this example ?
> > > > >>
> > > > >There is some in apps/examples/README.md, but not a lot of info.
> > > >
> > > > Not much, no, but the example code is pretty self-explanatory!
> > > >
> > > >
> > > >
> > >
> >
>
>



Re: CAN example crashes

2021-05-08 Thread Gregory Nutt




No, I mean on top of that: CANopen, UAVCAN, other?

Are we still talking about apps/examples/can?  apps/examples/can is a 
low-level driver test that does not use any intervening protocol and 
only operates in loopback mode.  It just verifies the loopback in its 
"normal" configuration...  What comes in must be the same as what was 
sent out... but can be used in non-loopback mode with reduced functionality.


Re: CAN example crashes

2021-05-08 Thread Grr
>
> Are we still talking about apps/examples/can?


No, we're talking now about Disruptive Solutions' setup as he described it
in the message before my question

apps/examples/can is a
> low-level driver test that does not use any intervening protocol and
> only operates in loopback mode.  It just verifies the loopback in its
> "normal" configuration...  What comes in must be the same as what was
> sent out... but can be used in non-loopback mode with reduced
> functionality.
>


Re: CAN example crashes

2021-05-08 Thread Miguel Wisintainer
Just a test

Enviado do meu iPhone

> Em 8 de mai. de 2021, à(s) 15:47, Gregory Nutt  escreveu:
> 
> 
>> No, I mean on top of that: CANopen, UAVCAN, other?
>> 
> Are we still talking about apps/examples/can?  apps/examples/can is a 
> low-level driver test that does not use any intervening protocol and only 
> operates in loopback mode.  It just verifies the loopback in its "normal" 
> configuration...  What comes in must be the same as what was sent out... but 
> can be used in non-loopback mode with reduced functionality.


Re: CAN example crashes

2021-05-08 Thread Alan Carvalho de Assis
Roger that!

On 5/8/21, Miguel Wisintainer  wrote:
> Just a test
>
> Enviado do meu iPhone
>
>> Em 8 de mai. de 2021, à(s) 15:47, Gregory Nutt 
>> escreveu:
>>
>> 
>>> No, I mean on top of that: CANopen, UAVCAN, other?
>>>
>> Are we still talking about apps/examples/can?  apps/examples/can is a
>> low-level driver test that does not use any intervening protocol and only
>> operates in loopback mode.  It just verifies the loopback in its "normal"
>> configuration...  What comes in must be the same as what was sent out...
>> but can be used in non-loopback mode with reduced functionality.
>


esp32 u-blox sara 350

2021-05-08 Thread Miguel Wisintainer
Sir
I am executing on esp32 dev kit v1, the pppd
application!
The init modem works very very well, but always finish on CONNECT. I can see 
the modem sending the ppp data, but, nothing more happens, then the ppp app 
send again +++, got no CARRIER, and repeat the PROCESS of init until CONNECT, 
and again and again! Is that a problem of RTS CTS that i am not using between 
ESP32 and MODEM ? Or other problem ? Can you give me some TIP ? If possible 
test there without HANDSHAKING.

Thank you so much!

Enviado do meu iPhone