Searched refs:fout (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.5.0/tools/ |
D | gen_esp_err_to_name.py | 246 def generate_c_output(fin, fout): argument 272 …fout.write('//Do not edit this file because it is autogenerated by ' + os.path.basename(__file__) … 277 fout.write("#if __has_include(\"" + i + "\")\n#include \"" + i + "\"\n#endif\n") 287 fout.write(' // %s\n' % last_file) 289 fout.write('# ifdef %s\n' % e.name) 290 fout.write(table_line) 295 fout.write(hexnum) 298 fout.write(' %s' % e.comment) 303 fout.write(' %s' % w[0].strip()) 305 fout.write('\n%s' % w[i]) [all …]
|
/hal_espressif-3.5.0/examples/storage/semihost_vfs/main/ |
D | semihost_vfs_example_main.c | 36 FILE *fout = freopen("/host/esp32_stdout.txt", "w", stdout); in app_main() local 37 if (fout == NULL) { in app_main() 43 setvbuf(fout, (char *)s_buf, _IOFBF, sizeof(s_buf)); in app_main() 52 fflush(fout); // ensure that all data are sent to the host file in app_main() 54 int count = ftell(fout); in app_main() 55 stdout = freopen("/dev/uart/" STRINGIFY(CONFIG_ESP_CONSOLE_UART_NUM), "w", fout); in app_main()
|
/hal_espressif-3.5.0/components/nvs_flash/nvs_partition_generator/ |
D | nvs_partition_gen.py | 480 def __init__(self, fout, input_size, version, encrypt=False, key_input=None): argument 488 self.fout = fout 508 self.fout.write(result)
|