(value)
| 26 | """ |
| 27 | |
| 28 | def __check_dtc(value): |
| 29 | if value != 0 and os.system("dtc -v") != 0: |
| 30 | print(__dtc_install_tip) |
| 31 | |
| 32 | def dts_to_dtb(RTT_ROOT, dts_list, options = "", include_paths = [], ignore_warning = []): |
| 33 | path = GetCurrentDir() + '/' |
no outgoing calls
no test coverage detected