Search found 2 matches
- Sat May 23, 2020 7:36 am
- Forum: ESP32 boards
- Topic: btree crashes on double close (BUG)
- Replies: 1
- Views: 2117
btree crashes on double close (BUG)
Micropython crashes and reboots when you close a btree DB twice. Hardware is a ESP-WROOM-32 (Adafruit Huzzah32). Example below causes the crash. >>> import btree >>> f = open("/mydb", "w+b") >>> db = btree.open(f) >>> db.close() 0 >>> db.close() Guru Meditation Error: Core 1 panic'ed (LoadProhibited...
- Mon Apr 27, 2020 7:27 am
- Forum: ESP32 boards
- Topic: WiFi packet sniffing and injection now supported!
- Replies: 2
- Views: 5298
WiFi packet sniffing and injection now supported!
Hello everyone, It is my first post on the forum and I hope everyone enjoys the progress I've had with being able to sniff and inject raw wifi packets. I spent the last week getting 802.11 promiscuous mode and packet injection working in micropython v1.12 (v1.12-256-geae495a71-dirty) using ESP-IDF v...