acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
code-format.py (355B)
1 #!/usr/bin/env python3 2 3 import os 4 5 os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"') 6 os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"') 7 os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"') 8 os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')