Skip to content

Commit dff0793

Browse files
committed
Comment out spammy DEBUG prints
1 parent 1e6e0fc commit dff0793

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

fw/rbcx-coprocessor/src/Bsp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void softResetInit() {
4646
if (xTaskNotifyWait(0, 0, nullptr, portMAX_DELAY) != pdTRUE)
4747
continue;
4848

49-
DEBUG("Soft resetting peripherials to default state.\n");
49+
//DEBUG("Soft resetting peripherials to default state.\n");
5050

5151
setLeds(0);
5252
buzzerSetState(false);

fw/rbcx-coprocessor/src/Esp32Manager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void Esp32Manager::poll() {
6060

6161
if (m_watchdogTimer.poll() && !m_inBootloader && m_previousEnEdge
6262
&& m_enPinHolders == 0) {
63-
DEBUG("Esp32 watchdog timed out, resetting.\n");
63+
//DEBUG("Esp32 watchdog timed out, resetting.\n");
6464
queueReset();
6565
}
6666
}
@@ -91,7 +91,7 @@ void Esp32Manager::queueReset(bool bootloader) {
9191
}
9292

9393
void Esp32Manager::strapPins(bool bootloader) {
94-
DEBUG("Straping pins, bootloader: %d\n", bootloader);
94+
//DEBUG("Straping pins, bootloader: %d\n", bootloader);
9595
pinInit(esp0Pin, GPIO_MODE_OUTPUT_OD, GPIO_NOPULL, GPIO_SPEED_FREQ_LOW);
9696
pinInit(esp12Pin, GPIO_MODE_OUTPUT_PP, GPIO_NOPULL,
9797
GPIO_SPEED_FREQ_LOW); // TODO: set pin 12 to OD on RBCX v1.1, v1.0 has HW bug

0 commit comments

Comments
 (0)