Add script for AVR style check.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15911 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Theodore Ateba 2022-12-24 23:00:36 +00:00
parent e31b74e1da
commit 58c4759d01
3 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#!/bin/bash
find ../../demos/AVR -name "*.[ch]" -exec perl stylecheck.pl "{}" \;

View File

@ -0,0 +1,2 @@
#!/bin/bash
find ../../os/hal/ports/AVR/ -name "*.[ch]" -exec perl stylecheck.pl "{}" \;

View File

@ -0,0 +1,2 @@
#!/bin/bash
find ../../testhal/AVR -name "*.[ch]" -exec perl stylecheck.pl "{}" \;