Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions include/config.h
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
#pragma once

#include <cstdint>

// Set the Pin names here for consistency
namespace PIN {

constexpr uint8_t Example = 11;
}
6 changes: 1 addition & 5 deletions submit
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

Expand Down