mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 17:53:45 +08:00
873549150e
The drivers have been changed back original logic. Fix #5270 Fix #5271 Related to #5204 lvgl/lv_binding_micropython#313 Discussion on #5273 Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
20 lines
655 B
Python
Executable File
20 lines
655 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
script_dir = os.path.realpath(__file__)
|
|
script_dir = os.path.dirname(script_dir)
|
|
cfg_file = os.path.join(script_dir, 'code-format.cfg')
|
|
|
|
print("\nFormatting demos")
|
|
os.system(f'astyle --options={cfg_file} --recursive "{script_dir}/../demos/*.c,*.cpp,*.h"')
|
|
|
|
print("\nFormatting examples")
|
|
os.system(f'astyle --options={cfg_file} --recursive "{script_dir}/../examples/*.c,*.cpp,*.h"')
|
|
|
|
print("Formatting src")
|
|
os.system(f'astyle --options={cfg_file} --recursive "{script_dir}/../src/*.c,*.cpp,*.h"')
|
|
|
|
print("\nFormatting tests")
|
|
os.system(f'astyle --options={cfg_file} --recursive "{script_dir}/../tests/*.c,*.cpp,*.h"')
|