Fred Dushin

Results 40 comments of Fred Dushin

What platform are you building on? It sounds like floating point is not supported on your platform? Try building CMAKE with floating point support disabled: ```cmake -DAVM_DISABLE_FP=on ```

Does the new AtomVM memory document satisfy this?

Duplicates https://github.com/fadushin/esp8266/issues/1 If anyone has some spare cycles to test, contact me. I have some thoughts about how to try.

Basically with debugging. I have tried the following: In ESP (^E, paste, ^D): ``` class EchoHandler: def __init__(self): pass def handle_request(self, reader, writer, tcp_request): import utime print("reading line...") utime.sleep_ms(10) data...

Sample output: ``` paste mode; Ctrl-C to cancel, Ctrl-D to finish === class EchoHandler: === def __init__(self): === pass === === def handle_request(self, reader, writer, tcp_request): === import utime ===...

Excellent thanks for that @MvincM. Still building my ESP32 kit! We’re you testing above code?

Sorry, no :( I have been focused the ESP32, and my time is pretty limited to work on Micropython on the ESP8266. My guess is that there is something fundamental...

You need to install the asyncio (and other) dependencies. Please see https://github.com/fadushin/esp8266/tree/master/micropython/uhttpd#frozen-bytecode-recommended

@krystlih Ok to close?

Wow that's cool. It looks like your ESP (or whatever device you are running on) crashed. Does it crash immediately, or does it crash only when you make an HTTP...