Disable debug message for RP2040 interrupt

This commit is contained in:
Renze Nicolai 2022-04-23 04:03:48 +02:00
parent e42aefed7f
commit f6c5666f20
2 changed files with 7 additions and 7 deletions

View file

@ -29,7 +29,7 @@ void rp2040_intr_task(void *arg) {
ESP_LOGE(TAG, "RP2040 interrupt task failed to read from RP2040");
continue;
}
ESP_LOGW(TAG, "RP2040 input state %08x", state);
//ESP_LOGW(TAG, "RP2040 input state %08x", state);
uint16_t interrupt = state >> 16;
uint16_t values = state & 0xFFFF;
for (uint8_t index = 0; index < 16; index++) {

View file

@ -144,19 +144,19 @@ void fpga_test(ILI9341* ili9341, ICE40* ice40, xQueueHandle buttonQueue) {
if (xQueueReceive(buttonQueue, &buttonMessage, portMAX_DELAY) == pdTRUE) {
printf("Button: %u, %u\n", buttonMessage.input, buttonMessage.state);
if (buttonMessage.state) {
/*switch(buttonMessage.button) {
case PCA9555_PIN_BTN_HOME:
case PCA9555_PIN_BTN_MENU:
case PCA9555_PIN_BTN_BACK:
switch(buttonMessage.input) {
case RP2040_INPUT_BUTTON_HOME:
case RP2040_INPUT_BUTTON_MENU:
case RP2040_INPUT_BUTTON_BACK:
waitForChoice = false;
break;
case PCA9555_PIN_BTN_ACCEPT:
case RP2040_INPUT_BUTTON_ACCEPT:
reload_fpga = true;
waitForChoice = false;
break;
default:
break;
}*/
}
}
}
}