Skip to content

Commit c56c393

Browse files
committed
Fixed the memory leak error when intaking
- The issue traces back to the Controller.Screen.Print statements, we don't know what was going on with them but removing them entirely was the solution to the memory error - MobileGoalHeight was changed a little bit, but needs to be adjusted to be slightly smaller for consistency - Removed the hasLiftReachedBottom functions from MOBILE_GOAL and MOBILE_GOAL_UP states - Reverted the limit switch call in hasLiftReachedBottom. Instead of creating a new reference to the switch every time hasLiftReachedBottom is called, we simply const_cast the limit switch created in main.cpp and store its value
1 parent 0246477 commit c56c393

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

2024/prototype/intake_mechanisms/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ PivotRampPrototype makePivotRampPrototype() {
153153
p.setLiftHeights({
154154
// These values have been determined experimentally.
155155
.defaultHeight = 0,
156-
.mobileGoalHeight = 0.46,
156+
.mobileGoalHeight = 0.31,
157157
.allianceStakeHeight = rotationsToTop,
158158
.wallStakeHeight = 1.3
159159
});

2024/prototype/intake_mechanisms/src/prototypes.cpp

+4-7
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,10 @@ bool PivotRampPrototype::isLiftAvailable() const {
224224
}
225225

226226
bool PivotRampPrototype::hasLiftReachedBottom() const {
227-
// PivotRampPrototype* that = const_cast<PivotRampPrototype*>(this);
228-
// int limitSwitchValue = that->limitSwitch.value();
229-
vex::limit input(Seventeen59A.ThreeWirePort.B);
230-
Controller.Screen.setCursor(CONTROLLER_LIMIT_SWITCH_ROW, CONTROLLER_LIFT_LIMIT_SWITCH_COLUMN);
231-
Controller.Screen.print("%d [%s]", input.value(), (input ? "true" : "false")); // Ternary operator
232-
// Controller.Screen.print<int>(limitSwitchValue);
233-
return input.value();
227+
PivotRampPrototype* that = const_cast<PivotRampPrototype*>(this);
228+
int limitSwitchValue = that->limitSwitch.value();
229+
//vex::limit input(Seventeen59A.ThreeWirePort.B);
230+
return limitSwitchValue;
234231
}
235232

236233
void PivotRampPrototype::clamp(bool active) {

2024/prototype/intake_mechanisms/src/updateLiftState.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,9 @@ void updateLiftState(
102102
} else {
103103
robotWithLift.moveLiftDirect(0);
104104
}
105-
robotWithLift.hasLiftReachedBottom();
106105
break;
107106

108107
case LiftState::MOBILE_GOAL_UP:
109-
robotWithLift.hasLiftReachedBottom();
110108
if (!robotWithLift.isLiftSpinning()) {
111109
robotWithLift.moveLiftDirect(0);
112110
if (!upButton) {

0 commit comments

Comments
 (0)