File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ idf.py -p PORT flash monitor
5353
5454(Replace PORT with the name of the serial port to use.)
5555
56+ ` Firmware/Targets/ESP32S2/openffb-esp32s2.bin ` is a compiled firmware. You can write it from 0x00 address to esp32s2
57+
5658(To exit the serial monitor, type `` Ctrl-] `` .)
5759
5860See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -u
4+ set -e
5+
6+ esptool.py --chip esp32s2 merge_bin -o openffb-esp32s2.bin --flash_mode dio --flash_size 4MB \
7+ 0x1000 build/bootloader/bootloader.bin \
8+ 0x10000 build/openffboard.bin \
9+ 0x8000 build/partition_table/partition-table.bin
Original file line number Diff line number Diff line change 11
22CONFIG_FREERTOS_HZ=1000
3+ CONFIG_ESP32S2_DEFAULT_CPU_FREQ_240=y
34CONFIG_TINYUSB=y
45CONFIG_TINYUSB_CDC_ENABLED=y
56CONFIG_TINYUSB_HID_ENABLED=y
67CONFIG_TINYUSB_MIDI_ENABLED=y
7- CONFIG_COMPILER_CXX_RTTI=y
8+ CONFIG_COMPILER_CXX_RTTI=y
You can’t perform that action at this time.
0 commit comments