Created
May 10, 2023 15:06
-
-
Save mongonta0716/f50205e030d06daf79be6de6661ddd6b to your computer and use it in GitHub Desktop.
暫定版CoreS3用platformio.ini
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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 | |
[platformio] | |
default_envs = m5stack-cores3 | |
[env] | |
platform = espressif32 @ 5.2.0 | |
framework = arduino | |
upload_speed = 1500000 | |
monitor_speed = 115200 | |
board_build.f_flash = 80000000L | |
board_build.filesystem = spiffs | |
board_build.partitions = default_16MB.csv | |
build_flags = -DCORE_DEBUG_LEVEL=4 | |
lib_deps = | |
meganetaaan/[email protected] | |
;https://github.com/meganetaaan/m5stack-avatar | |
m5stack/[email protected] | |
arminjo/ServoEasing @3.1.0 | |
madhephaestus/[email protected] | |
tobozo/[email protected] | |
lib_ldf_mode = deep | |
[env:m5stack-core2] | |
board = m5stack-core2 | |
[env:m5stack-grey] | |
; Flash16MBのBasicはこちらを使ってください。 | |
board = m5stack-grey | |
[env:m5stack-fire] | |
; fireはespressif32最新版(5.x)で動かない場合は下記の1行をコメントアウトしてください。 | |
; platform = espressif32 @ 4.4.0 | |
board = m5stack-fire | |
[env:m5stack-core-esp32] | |
; Flash 16MBのBasicはm5stack-greyを使ってください。 | |
board = m5stack-core-esp32 | |
board_build.partitions = huge_app.csv | |
[env:m5stick-c] | |
; Flash 16MBのBasicはm5stack-greyを使ってください。 | |
board = m5stick-c | |
board_build.partitions = huge_app.csv | |
[env:m5atoms3] | |
platform = espressif32 @ 6.2.0 | |
board = m5stack-atoms3 | |
build_flags = -DARDUINO_USB_MODE=1 | |
-DARDUINO_USB_CDC_ON_BOOT=1 | |
;monitor_port = COM6 | |
monitor_rts = 1 | |
monitor_dtr = 1 | |
board_build.partitions = huge_app.csv | |
[env:m5atoms3-release] | |
platform = espressif32 @ 6.2.0 | |
board = m5stack-atoms3 | |
board_build.partitions = huge_app.csv | |
[env:m5stack-cores3] | |
platform = espressif32 @ 6.2.0 | |
board = esp32-s3-devkitc-1 | |
board_upload.flash_size = 16MB | |
board_upload.maximum_size = 16777216 | |
board_build.partitions = default_16MB.csv | |
build_flags = | |
-DARDUINO_M5STACK_CORES3 | |
-DBOARD_HAS_PSRAM | |
-DARDUINO_UDB_MODE=1 | |
board_build.arduino.memory_type = qio_qspi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment