Skip to content

Instantly share code, notes, and snippets.

@mongonta0716
Created December 16, 2023 05:42
Show Gist options
  • Save mongonta0716/c4bc5e888eb356cf5bb01c3da5bb17f5 to your computer and use it in GitHub Desktop.
Save mongonta0716/c4bc5e888eb356cf5bb01c3da5bb17f5 to your computer and use it in GitHub Desktop.
M5StickCPlus2 マイクテスト
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:m5stick-c]
platform = espressif32
; Flash 16MBのBasicはm5stack-greyを使ってください。
board = m5stick-c
framework = arduino
upload_speed = 1500000
monitor_speed = 115200
board_build.filesystem = spiffs
board_build.partitions = huge_app.csv
lib_deps =
https://github.com/m5stack/M5Unified#develop
[env:m5stick-cplus2]
platform = espressif32
board = m5stick-c
framework = arduino
upload_speed = 1500000
monitor_speed = 115200
board_upload.flash_size = 8MB
board_upload.maximum_size = 8388608
board_build.f_flash = 80000000L
board_build.filesystem = spiffs
build_flags =
-DCORE_DEBUG_LEVEL=0
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
-mfix-esp32-psram-cache-strategy=memw
board_build.partitions = default_8MB.csv
lib_deps =
https://github.com/m5stack/M5Unified#develop
;m5stack/M5Unified@0.1.11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment