Re: NuttX protected mode on ESP32

2022-10-31 Thread Gustavo Henrique Nihei
Hi Robert, > For flashing the board I'm using *esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 921600 write_flash 0x1000 arch/xtensa/src/esp32/bootloader/esp-nuttx-bootloader/out/bootloader-esp32.bin 0x8000 ../esp-bins/partition-table-esp32.bin 0x1 nuttx.bin *and it seems to be working fine

Re: NuttX protected mode on ESP32

2022-10-25 Thread Gustavo Henrique Nihei
Hi Robert, The list of commands you've posted is missing the "make bootloader" command. The "esp32-devkitc:knsh" configuration defines the "CONFIG_ESP32_BOOTLOADER_BUILD_FROM_SOURCE" entry, which requires that the bootloader firmware image be built from source. This is because when Protected Mode

NuttX protected mode on ESP32

2022-10-25 Thread Robert Alexa
Hi all, I've been trying to boot NuttX in protected mode on my ESP32-Wroom board, but I'm running into a few issues unfortunately. Below is a small excerpt taken from my Ubuntu (running on a VMWare workstation) illustrating the commands I am currently using in order to try and flash the board. r