Update platformio.ini (#43)

The used CPU has 4MB of flash memory. With the default settings only 1310720 bytes are used for the program
Current omote with default settings: Flash: [========= ]  85.1% (used 1115225 bytes from 1310720 bytes)

Using a different partition table will solve this problem. 

As the OTA feature is not needed this partition can be used for the application.
With this partition table 3145728 bytes are available for the application

Flash: [====      ]  35.5% (used 1115225 bytes from 3145728 bytes)
This commit is contained in:
phant0mias 2023-09-27 20:46:52 +02:00 committed by GitHub
parent 8e7d6e1813
commit a42a756205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ framework = arduino
monitor_speed = 115200 monitor_speed = 115200
board_build.f_flash = 80000000L board_build.f_flash = 80000000L
board_build.f_cpu = 240000000L board_build.f_cpu = 240000000L
board_build.partitions = huge_app.csv
upload_speed = 1000000 upload_speed = 1000000
lib_deps = lib_deps =
sparkfun/SparkFun LIS3DH Arduino Library@^1.0.3 sparkfun/SparkFun LIS3DH Arduino Library@^1.0.3