From 3a569aabe38da28c5e208794fdddd8eae5d4b42b Mon Sep 17 00:00:00 2001 From: Eren Siegman Date: Mon, 2 Mar 2026 02:36:18 +0000 Subject: [PATCH 1/2] 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 . From 3afe7564ebf70f8b657b9075b7b5b194b1eef76a Mon Sep 17 00:00:00 2001 From: Eren Siegman Date: Mon, 2 Mar 2026 02:42:20 +0000 Subject: [PATCH 2/2] Trying to get pr to work --- .github/{ => PULL_REQUEST_TEMPLATE}/PULL_REQUEST_TEMPLATE.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => PULL_REQUEST_TEMPLATE}/PULL_REQUEST_TEMPLATE.md (100%) 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