-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Unable to receive the data from esp32 #266
Description
I did flash the settings to my esp32 successfully as following:
python -m esptool --chip esp32s3 --port /dev/tty.SLAB_USBtoUART --baud 460800
write-flash --flash-mode dio --flash-size 8MB --flash-freq 80m
0x0 bootloader.bin
0x8000 partition-table.bin
0xf000 ota_data_initial.bin
0x20000 esp32-csi-node.bin
python firmware/esp32-csi-node/provision.py
--port /dev/tty.SLAB_USBtoUART --ssid "" --password ""
--target-ip *** --target-port 5005
and i saw the log with ‘screen /dev/tty.SLAB_USBtoUART 115200’ and i got following results:
W (289146) edge_proc: Fall detected! accel=5.8471 > thresh=2.0000
W (289146) edge_proc: Fall detected! accel=2.5721 > thresh=2.0000
W (289156) edge_proc: Fall detected! accel=3.6189 > thresh=2.0000
W (289166) edge_proc: Fall detected! accel=5.1346 > thresh=2.0000
W (289176) edge_proc: Fall detected! accel=5.5500 > thresh=2.0000
W (289176) edge_proc: Fall detected! accel=3.1787 > thresh=2.0000
W (289216) edge_proc: Fall detected! accel=3.4331 > thresh=2.0000
W (289216) edge_proc: Fall detected! accel=5.0380 > thresh=2.0000
W (289716) edge_proc: Fall detected! accel=2.1048 > thresh=2.0000
E (289806) task_wdt: Task watchdog got triggered. The following tasks/users did not reset the watchdog in time:
E (289806) task_wdt: - IDLE1 (CPU 1)
E (289806) task_wdt: Tasks currently running:
E (289806) task_wdt: CPU 0: IDLE0
E (289806) task_wdt: CPU 1: edge_dsp
E (289806) task_wdt: Print CPU 1 backtrace
Backtrace: 0x403796A7:0x3FC9B6D0 0x403772B5:0x3FC9B6F0 0x420095B7:0x3FCC7CB0
W (289836) edge_proc: Fall detected! accel=2.1048 > thresh=2.0000
W (289966) edge_proc: Fall detected! accel=2.1624 > thresh=2.0000
W (289976) edge_proc: Fall detected! accel=3.0941 > thresh=2.0000
I think there is something wrong!
