Search found 4 matches

by tdabboud
Fri Oct 30, 2015 10:06 pm
Forum: Development of MicroPython
Topic: Porting Mirocpython to Risc V ?
Replies: 10
Views: 17175

Re: Porting Mirocpython to Risc V ?

This sounds really interesting. I haven't worked with FPGA's in a couple years, but I would be interested in helping out.
by tdabboud
Wed Oct 07, 2015 11:03 pm
Forum: Programs, Libraries and Tools
Topic: Jupyter kernel for micropython
Replies: 4
Views: 8729

Re: Jupyter kernel for micropython

Does this require a particular version of python or ipython? I'm using Ubuntu 14.04 and when I tried sudo make install, I get this at the end: running install_egg_info removing '/usr/local/lib/python2.7/dist-packages/mpkernel-0.8900.egg-info' (and everything under it) Copying mpkernel.egg-info to /...
by tdabboud
Wed Oct 07, 2015 10:15 pm
Forum: Programs, Libraries and Tools
Topic: Jupyter kernel for micropython
Replies: 4
Views: 8729

Re: Jupyter kernel for micropython

Unix port You must set the environment variable for the unix micropython: $ export MPUNIX=<PATH_TO_UNIX_MICROPYTHON> I'd suggest to either remove that, or at least make optional. You should just expect micropython to be in PATH (and tell users to put it there). That's a good idea. I will make this ...
by tdabboud
Wed Oct 07, 2015 1:00 am
Forum: Programs, Libraries and Tools
Topic: Jupyter kernel for micropython
Replies: 4
Views: 8729

Jupyter kernel for micropython

I have developed a Jupyter/Ipython kernel module for use with micropython. I got inspiration to do this from http://forum.micropython.org/viewtopic.php?f=15&t=629 , as the code was never released and I thought it was a very interesting project. I currently have full support for the unix port and hav...