From 3a569aabe38da28c5e208794fdddd8eae5d4b42b Mon Sep 17 00:00:00 2001 From: Eren Siegman Date: Mon, 2 Mar 2026 02:36:18 +0000 Subject: [PATCH] Retesting pull request functionality --- include/config.h | 8 ++++++++ submit | 6 +----- 2 files changed, 9 insertions(+), 5 deletions(-) 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 .