I did not understood the warning as an issue, but the reboot yes

Especially because it never occurred before with the same ESP32 board, same cable and same computer.
I will retry with a laboratory power supply.
Code: Select all
/Volumes/Data/uPython/bash/../build/esptool/esptool.py --chip esp32 --port /dev/tty.usbserial-DN02N7EB --baud 460800 write_flash --compress -fs 4MB -fm dio -ff 40m 0x1000 latest.bin
Code: Select all
rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3f400020,len:317888
ets Jun 8 2016 00:22:57
Code: Select all
>>> import machine as mc
>>> mc.nvs_setint('lastval',1000)
#reboot
>>> mc.nvs_getint('lastval')
1000
Code: Select all
>>> mc.nvs_setstr('json','{"x":10}')
>>> mc.nvs_getstr('json')
Guru Meditation Error of type LoadProhibited occurred on core 1. Exception was unhandled.
Register dump:
PC : 0x400014fd PS : 0x00060f30 A0 : 0x8010b179 A1 : 0x3ffbae30
A2 : 0x00000000 A3 : 0xfffffffc A4 : 0x000000ff A5 : 0x0000ff00
A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x3ffbadd0
A10 : 0x00000000 A11 : 0x3ffc07b8 A12 : 0x3f410da3 A13 : 0x00000000
A14 : 0x3ffbae40 A15 : 0x3ffbafc0 SAR : 0x00000000 EXCCAUSE: 0x0000001c
EXCVADDR: 0x00000000 LBEG : 0x400014fd LEND : 0x4000150d LCOUNT : 0xffffffff
Backtrace: 0x400014fd:0x3ffbae30 0x4010b176:0x3ffbae40 0x4011e425:0x3ffbae70 0x4011a2fd:0x3ffbae90 0x4011a36d:0x3ffbaeb0 0x40126ced:0x3ffbaed0 0x4011e586:0x3ffbaf70 0x4011a2fd:0x3ffbafe0 0x4011a32a:0x3ffbb000 0x4010e667:0x3ffbb020 0x4010e8c5:0x3ffbb0c0 0x40108541:0x3ffbb100
CPU halted.
Code: Select all
>>> import machine as mc
>>> mc.nvs_setstr('hello','world')
>>> mc.nvs_getstr('hello')
Guru Meditation Error of type LoadProhibited occurred on core 1. Exception was unhandled.
Register dump:
PC : 0x400014fd PS : 0x00060730 A0 : 0x8010b179 A1 : 0x3ffbae30
A2 : 0x00000000 A3 : 0xfffffffc A4 : 0x000000ff A5 : 0x0000ff00
A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x3ffbadd0
A10 : 0x00000000 A11 : 0x3ffc07b8 A12 : 0x3ffc7cdc A13 : 0x00000000
A14 : 0x3ffbae40 A15 : 0x3ffbafc0 SAR : 0x00000004 EXCCAUSE: 0x0000001c
EXCVADDR: 0x00000000 LBEG : 0x400014fd LEND : 0x4000150d LCOUNT : 0xffffffff
Backtrace: 0x400014fd:0x3ffbae30 0x4010b176:0x3ffbae40 0x4011e425:0x3ffbae70 0x4011a2fd:0x3ffbae90 0x4011a36d:0x3ffbaeb0 0x40126ced:0x3ffbaed0 0x4011e586:0x3ffbaf70 0x4011a2fd:0x3ffbafe0 0x4011a32a:0x3ffbb000 0x4010e667:0x3ffbb020 0x4010e8c5:0x3ffbb0c0 0x40108541:0x3ffbb100
CPU halted.
Code: Select all
>>> import machine as mc
>>> mc.nvs_setstr('json','{"x":10}')
>>> mc.nvs_getstr('json')
'{"x":10}'
>>> mc.reset()
.....
.....
FreeRTOS running on BOTH CORES, MicroPython task started on App Core.
uPY stack size = 19456 bytes
uPY heap size = 81920 bytes
D (279) intr_alloc: Connected src 34 to int 3 (cpu 1)
Reset reason: Soft CPU reset
D (287) intr_alloc: Connected src 22 to int 4 (cpu 1)
MicroPython ESP32_LoBo_v2.0.6 - 2017-10-24 on ESP32 board with ESP32
Type "help()" for more information.
>>> import machine as mc
>>> mc.nvs_getstr('json')
'{"x":10}'
>>>