Re: how to port things from spresense sdk

2020-02-10 Thread Alin Jerpelea
my colleague worked on it https://developer.sony.com/posts/zerynth-provides-python-support-for-spresense-microcontroller-board-from-sony/ Regards Alin On Mon, Feb 10, 2020 at 5:16 PM Xiang Xiao wrote: > Alin, > do you upstream your work? I can't find here: > https://github.com/micropython/mic

Re: how to port things from spresense sdk

2020-02-10 Thread Xiang Xiao
Alin, do you upstream your work? I can't find here: https://github.com/micropython/micropython/tree/master/ports There even has a zephyr porting. It's greet if you can upstream nuttx porting to the mainline. On Tue, Feb 11, 2020 at 12:04 AM Alin Jerpelea wrote: > > Hi > > as a best practice inste

Re: how to port things from spresense sdk

2020-02-10 Thread Alin Jerpelea
Hi as a best practice instead of forking a project and maintaining it you should try to upstream the needed patches do that the project can be built on top of NuttX. For reference you can check how microPython or circuit python are built on top of NuttX without the need of forking the code https:

Re: how to port things from spresense sdk

2020-02-10 Thread Gregory Nutt
How about we host the active project porting on github.com/nuttx? so the community could share the work. The ideal solution would be to have the Pahu MQTT support NuttX natively in their code. Then you do not have to port it at all. We don't want responsibility for maintaining forks of other

Re: how to port things from spresense sdk

2020-02-10 Thread Takashi Yamamoto
On Tue, Feb 11, 2020 at 12:34 AM Gregory Nutt wrote: > > > > How about we host the active project porting on github.com/nuttx? so > > the community could share the work. > The ideal solution would be to have the Pahu MQTT support NuttX natively > in their code. Then you do not have to port it at

Re: how to port things from spresense sdk

2020-02-10 Thread Gregory Nutt
How about we host the active project porting on github.com/nuttx? so the community could share the work. The ideal solution would be to have the Pahu MQTT support NuttX natively in their code.  Then you do not have to port it at all.  We don't want responsibility for maintaining forks of othe

Re: how to port things from spresense sdk

2020-02-10 Thread Xiang Xiao
How about we host the active project porting on github.com/nuttx? so the community could share the work. On Mon, Feb 10, 2020 at 11:11 PM Gregory Nutt wrote: > > > > I wanted to use mqtt on nuttx. > > I found a nuttx port of paho.mqtt.embedded-c in spresense sdk. [1] > > I modified it for my nutt

Re: how to port things from spresense sdk

2020-02-10 Thread Gregory Nutt
I wanted to use mqtt on nuttx. I found a nuttx port of paho.mqtt.embedded-c in spresense sdk. [1] I modified it for my nuttx $(APPDIR)/external. you can find it here: https://github.com/yamt/mqtt_nuttx while it worked, i'm not quite happy with having a fork like this. can anyone suggest a bette