(output_file)
| 94 | exit_with_error(error_message) |
| 95 | |
| 96 | def write_defaults(output_file): |
| 97 | default_properties_path = os.path.join("Buildscripts", "sdkconfig", "default.properties") |
| 98 | default_properties = read_file(default_properties_path) |
| 99 | output_file.write(default_properties) |
| 100 | |
| 101 | def write_partition_table(output_file, device_properties: ConfigParser, is_dev: bool): |
| 102 | if is_dev: |
no test coverage detected