Search found 92 matches

by slzatz
Sat Dec 23, 2017 10:21 pm
Forum: Programs, Libraries and Tools
Topic: rshell - Remote Shell
Replies: 89
Views: 110985

Re: rshell - Remote Shell

Thanks for the suggestion but unfortunately adding -a did not work so could be the port or something about my host setup.
by slzatz
Sat Dec 23, 2017 10:16 am
Forum: Programs, Libraries and Tools
Topic: rshell - Remote Shell
Replies: 89
Views: 110985

Re: rshell - Remote Shell

I would try to diagnose this by connecting with a terminal program to see whether the problem is with rshell or with the Loboris fork.

Code: Select all

ampy -p /dev/ttyUSB0 ls /flash
works fine on the same board.
by slzatz
Sat Dec 23, 2017 1:23 am
Forum: Programs, Libraries and Tools
Topic: rshell - Remote Shell
Replies: 89
Views: 110985

Re: rshell - Remote Shell

I am using the @loboris micropython ESP32 port and am running rshell on ubuntu 17.10. I start rshell with: rshell --port /dev/ttyUSB0 --buffer-size=32 I can get to the repl through rshell with no problem When I use the boards cmd I get: pyboard @ /dev.ttyUSB0 connected Dirs: /flash /pyboard/flash bu...
by slzatz
Sat Nov 11, 2017 2:19 pm
Forum: ESP32 boards
Topic: how to use the hardware SPI?
Replies: 3
Views: 3425

Re: how to use the hardware SPI?

I have experience with the hardware SPI support that the @loboris port Micropython_ESP32 provides and it works great and you don't have to be using psRAM to use that port. Also, it has a display module display module that supports the ILI9341.
by slzatz
Sun Oct 29, 2017 1:29 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 541941

Re: MicroPython on ESP32 with SPIRAM support

Could you , please, execute the code with esp-idf monitor and post the complete log, it could help the exact location of the error...
Emailed it to you.
by slzatz
Sat Oct 28, 2017 2:20 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 541941

Re: MicroPython on ESP32 with SPIRAM support

I am also seeing that same unhandled exception. A script that includes an mqtt subscription runs for a while correctly and then exits as follows: Guru Meditation Error of type LoadProhibited occurred on core 0. Exception was unhandled. Register dump: PC : 0x4012db63 PS : 0x00060430 A0 : 0x8012db4f A...
by slzatz
Sat Oct 28, 2017 12:04 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 541941

Re: MicroPython on ESP32 with SPIRAM support

Just a guess but if you aren't explicitly setting the client id then both clients will have the same id and only one will be able to connect to the broker. So when you construct the clients, use a different client id for each one: mqtt = network.mqtt(name="description", server="server", clientid = "...
by slzatz
Sun Oct 08, 2017 2:04 pm
Forum: ESP32 boards
Topic: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code
Replies: 5
Views: 5609

Re: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code

Works perfectly now -- speed of drawing is really impressive. @loboris - thanks for your work on this.
by slzatz
Sat Oct 07, 2017 7:31 am
Forum: ESP32 boards
Topic: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code
Replies: 5
Views: 5609

Re: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code

A bit of progress. I haven't yet gotten the ESP32 feather/TFT featherwing combo to work with the @loboris display driver but I can get the TFT to respond using your (@deshipu) ili9341 driver located here: https://github.com/adafruit/micropython-adafruit-rgb-display . So the following code works on t...
by slzatz
Sat Sep 30, 2017 11:25 pm
Forum: ESP32 boards
Topic: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code
Replies: 5
Views: 5609

Re: Trying to get the Adafruit TFT Featherwing to work with @loboris ESP32 code

Perhaps the SPI speed is too large? Have you tried at a slower clock speed?
Thanks for the suggestion - I was wondering that too. I have tried a variety of clock speeds and it hasn't made a difference.