Skip to content
Snippets Groups Projects
Commit 4a97240d authored by Dónal Murray's avatar Dónal Murray
Browse files

Add enum checker to help find arduino/hevserver mismatches

parent 14c734ae
Branches
No related merge requests found
#!/usr/bin/env bash
set -euo pipefail
for enum in CMD_TYPE CMD_GENERAL CMD_SET_TIMEOUT CMD_SET_MODE ALARM_TYPE ALARM_CODES; do
sed -e "/enum $enum/,/};/!d" -e '/};/d' -e 's/,$//g' -e 's/,\([[:blank:]]*\)\/\/\(.*\)/\1 #\2/g' -e 's@//@#@g' -e "s/enum \([[:graph:]]*\) .*{/class \1(Enum):/" ../arduino/hev_prototype_v1/src/common.h;
echo;
done
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment