Skip to content

Commit f90d855

Browse files
committed
add compiled bin file
1 parent c2ba17f commit f90d855

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

Firmware/Targets/ESP32S2/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

5860
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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
554 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

22
CONFIG_FREERTOS_HZ=1000
3+
CONFIG_ESP32S2_DEFAULT_CPU_FREQ_240=y
34
CONFIG_TINYUSB=y
45
CONFIG_TINYUSB_CDC_ENABLED=y
56
CONFIG_TINYUSB_HID_ENABLED=y
67
CONFIG_TINYUSB_MIDI_ENABLED=y
7-
CONFIG_COMPILER_CXX_RTTI=y
8+
CONFIG_COMPILER_CXX_RTTI=y

0 commit comments

Comments
 (0)