MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / write_performance_improvements

Function write_performance_improvements

device.py:205–209  ·  view source on GitHub ↗
(output_file, device_properties: ConfigParser)

Source from the content-addressed store, hash-verified

203 output_file.write("CONFIG_SPIRAM_XIP_FROM_PSRAM=y\n")
204
205def 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
211def write_lvgl_variable_placeholders(output_file):
212 output_file.write("# LVGL Placeholder\n")

Callers 1

write_propertiesFunction · 0.85

Calls 2

get_property_or_exitFunction · 0.70
writeMethod · 0.45

Tested by

no test coverage detected