Search found 60 matches

by mad474
Fri Aug 12, 2016 7:14 pm
Forum: ESP8266 boards
Topic: Accessing SD cards
Replies: 21
Views: 17906

Re: Accessing SD cards

pythoncoder wrote:It would be great to have this feature
ACK ... and picture completes together with DB module. (viewtopic.php?f=16&t=2043)
by mad474
Mon Aug 08, 2016 8:45 pm
Forum: ESP8266 boards
Topic: 2nd ESP8266 projects stretch goal - Embedded Database (btree module)
Replies: 20
Views: 20572

Re: 2nd ESP8266 projects stretch goal - Embedded Database (btree module)

Congratulations Paul! I've been playing with all available db-methods of todays build since an hour and didn't manage get the ESP8266 in to trouble (besides expected and well-established memory issues: Testing on a 1MB ESP-01). Heaps of shame on me (who was one of the loudest crying for a DB) for no...
by mad474
Sun May 01, 2016 7:10 pm
Forum: ESP8266 boards
Topic: Call for testing finalized WebREPL setup (before 1.8 release)
Replies: 27
Views: 21924

Re: Empty password seams to crash

When setting password to empty on first setup (means just pressing enter 2x), the board seams to crash. Every time now with the empty password when issuing "webrepl.start()", I get the following: >>> webrepl.start() Fatal exception 3(LoadStoreErrorCause): epc1=0x4000c068, epc2=0x00000000, epc3=0x00...
by mad474
Sun May 01, 2016 10:14 am
Forum: ESP8266 boards
Topic: Call for testing finalized WebREPL setup (before 1.8 release)
Replies: 27
Views: 21924

Re: Call for testing finalized WebREPL setup

Cursor and URL entry behaviour is perfect now, thanks! Two other remarks (maybe just to be mentioned in release notes?) after torture testing this morning: 1. Different browsers acting differently (surprise!) after pressing Disconnect button. In Firefox/Iceweasel 46.0a2 term.write('\x1b[31mDisconnec...
by mad474
Sat Apr 30, 2016 9:21 pm
Forum: ESP8266 boards
Topic: Call for testing finalized WebREPL setup (before 1.8 release)
Replies: 27
Views: 21924

Re: Call for testing finalized WebREPL setup

Now briefly but successfully tested WebREPL with password on 8m/1MB ESP01! Very good work, if I may say this. The password procedure worked as described. Two tiny remarks: 1. In order to have the cursor in the right place (this is after "New password:") I first had to click into the window. You can'...
by mad474
Sat Apr 30, 2016 8:34 pm
Forum: ESP8266 boards
Topic: Call for testing finalized WebREPL setup (before 1.8 release)
Replies: 27
Views: 21924

Re: Call for testing finalized WebREPL setup

pfalcon wrote:"make clean".
Thanks, this did it.
by mad474
Sat Apr 30, 2016 8:26 pm
Forum: ESP8266 boards
Topic: Call for testing finalized WebREPL setup (before 1.8 release)
Replies: 27
Views: 21924

Re: Call for testing finalized WebREPL setup

Apparently just in time back in town and ready to test. Maybe I've missed something but I'm getting the following build error after successfully building axtls: ~/micropython/esp8266$ make Use make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. CC ../py/modbuiltins.c In fi...
by mad474
Mon Mar 14, 2016 5:34 pm
Forum: ESP8266 boards
Topic: New *early access* mp-esp8266-firmware-vXY.bin on ESP8266
Replies: 49
Views: 46572

Re: New mp-esp8266-firmware-v01.bin on ESP8266

How do you find out what the manufacturer and device codes are? Turn your esp in to flash mode and run $ esptool.py --port /dev/ttyUSB0 flash_id (or use your differing port) and you'll get something like Connecting... Manufacturer: e0 Device: 4014 IIRC to find out the flash size in kbytes: Take the...
by mad474
Mon Mar 14, 2016 4:53 pm
Forum: ESP8266 boards
Topic: New *early access* mp-esp8266-firmware-vXY.bin on ESP8266
Replies: 49
Views: 46572

Re: New mp-esp8266-firmware-v01.bin on ESP8266

Damien wrote:The filesystem is created starting at offset 655360 in the flash... so that means you need more than 512k of flash for it to work. ESP-01 modules with only 512k flash won't work!
That was my assumption. Thanks for clarifying!
(It's your week-off, isn't it :))
by mad474
Mon Mar 14, 2016 10:36 am
Forum: ESP8266 boards
Topic: New *early access* mp-esp8266-firmware-vXY.bin on ESP8266
Replies: 49
Views: 46572

Re: New mp-esp8266-firmware-v01.bin on ESP8266

I've been programming a bunch of ESP01s of dubious quality... A couple of them gave me this boot_ error. For 3 out of 3 ESP-01 with Manufacturer: c8, Device: 4013 I can confirm that error on running import boot_. And 3 out of 3 ESP-01 with Manufacturer: e0, Device: 4014 go through "import boot_" fl...