diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from .github/PULL_REQUEST_TEMPLATE.md rename to .github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md diff --git a/include/config.h b/include/config.h index 6f70f09..dbb23f3 100644 --- a/include/config.h +++ b/include/config.h @@ -1 +1,9 @@ #pragma once + +#include + +// Set the Pin names here for consistency +namespace PIN { + +constexpr uint8_t Example = 11; +} diff --git a/submit b/submit index 0ae04c1..497ba67 100755 --- a/submit +++ b/submit @@ -4,17 +4,13 @@ GREEN='\033[0;32m' BLUE='\033[0;34m' NC='\033[0m' -echo -e "${BLUE}Updating local Software branch...${NC}" -git checkout software -git pull origin software - echo -n "Enter a short name for your feature (e.g., pid-fix, ir-sensors): " read FEATURE_NAME BRANCH_NAME="feature/$FEATURE_NAME" echo -e "${BLUE}Creating branch: $BRANCH_NAME${NC}" -git checkout -b "$BRANCH_NAME" +git checkout -B "$BRANCH_NAME" git add .