Skip to content

Commit

Permalink
fix(ESP32-S3): Temporarily disable increasing CPU freq
Browse files Browse the repository at this point in the history
  • Loading branch information
radimkarnis committed Feb 28, 2023
1 parent ecd40f7 commit 041b6e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flasher_stub/include/soc_support.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
#endif // ESP32H2

// Increase CPU freq to speed up read/write operations over USB
#define USE_MAX_CPU_FREQ (WITH_USB_JTAG_SERIAL || WITH_USB_OTG)
// Temporarily disabled on the S3 due to stability issues, will be fixed in the next minor release
#define USE_MAX_CPU_FREQ ((WITH_USB_JTAG_SERIAL || WITH_USB_OTG) && !ESP32S3)

/**********************************************************
* Per-SOC based peripheral register base addresses
Expand Down

0 comments on commit 041b6e9

Please sign in to comment.