From 71e4836e62c1b541639bace1bbf7de486c27b791 Mon Sep 17 00:00:00 2001 From: ary Date: Wed, 18 Oct 2023 18:50:45 -0400 Subject: [PATCH] update some important stuff --- RELENTLESS/src/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RELENTLESS/src/main.cpp b/RELENTLESS/src/main.cpp index 89fcad7..4254a3e 100644 --- a/RELENTLESS/src/main.cpp +++ b/RELENTLESS/src/main.cpp @@ -29,6 +29,7 @@ void initialize() { configureConstants() -> Sets PID constants on the chassis configureExitConditions() -> Sets default values for PID Exit conditions */ + chassisInit(); configureConstants(); configureExitConditions(); @@ -71,13 +72,13 @@ void opcontrol() { chassis.tank_control(); renu_control(); } else if (currentuser = RIA) { - chassis.tank_control(); + chassis.tank_control(); // ria_control(); } else if (currentuser == CHRIS) { chassis.arcade_standard(ary::SPLIT, ary::DEFAULT); renu_control(); } else { - renu_control(); + renu_control(); } pros::delay(ary::util::DELAY_TIME);