add more information when config file not found

This commit is contained in:
Emil Lerch 2023-04-20 16:25:23 -07:00
parent 9cd262ed57
commit 57a2f84880
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class BaseEflashLoader(object):
self.cfg = BFConfigParser()
self.cfg.read(self.config_file)
else:
printf('Config file not found')
printf('Config file "' + self.config_file + '" not found')
self.error_code_print('000B')
return (False, 0)
if self.interface == 'openocd':