feat(coredump): replace fun sel function

This commit is contained in:
gaoxu
2024-04-25 10:52:32 +08:00
parent 2cad39aee5
commit a08558a853
2 changed files with 7 additions and 12 deletions

View File

@@ -535,8 +535,6 @@ TEST_CASE("GPIO_set_output_level_get_input_level_test", "[gpio]")
TEST_ASSERT_EQUAL_INT_MESSAGE(1, gpio_get_level(TEST_GPIO_EXT_IN_IO), "get level error! the level should be high!");
}
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C5)
// C5 on FPGA do not support GPIO pull down
// This test routes constant-high/low signal to pins, another way is to directly connect TEST_GPIO_EXT_IN_IO to
// 3.3v or GND pin
TEST_CASE("GPIO_get_level_from_fixed_voltage_test", "[gpio]")
@@ -664,8 +662,6 @@ TEST_CASE("GPIO_mode_test", "[gpio]")
TEST_ASSERT_EQUAL_INT_MESSAGE(!level, gpio_get_level(TEST_GPIO_EXT_IN_IO), "direction GPIO_MODE_INPUT_OUTPUT set error, it gives incorrect output");
}
#endif
static void prompt_to_continue(const char *str)
{
printf("%s , please press \"Enter\" to go on!\n", str);