(output_file, device_properties: ConfigParser)
| 203 | output_file.write("CONFIG_SPIRAM_XIP_FROM_PSRAM=y\n") |
| 204 | |
| 205 | def write_performance_improvements(output_file, device_properties: ConfigParser): |
| 206 | idf_target = get_property_or_exit(device_properties, "hardware", "target").lower() |
| 207 | if idf_target == "esp32s3": |
| 208 | output_file.write("# Performance improvement: Fixes glitches in the RGB display driver when rendering new screens/apps\n") |
| 209 | output_file.write("CONFIG_ESP32S3_DATA_CACHE_LINE_64B=y\n") |
| 210 | |
| 211 | def write_lvgl_variable_placeholders(output_file): |
| 212 | output_file.write("# LVGL Placeholder\n") |
no test coverage detected