Skip to content

Commit 0e09260

Browse files
committedAug 20, 2019
FPGA: Skip some Nuvoton targets not supporting input pull-up/pull-down mode
The Nuvoton targets listed below don't support input pull-up/pull-down mode and so are skipped for test: - NUMAKER_PFM_NANO130 - NUMAKER_PFM_NUC472 - NUMAKER_PFM_M453
1 parent 033fffe commit 0e09260

File tree

1 file changed

+10
-0
lines changed
  • TESTS/mbed_hal_fpga_ci_test_shield/gpio

1 file changed

+10
-0
lines changed
 

‎TESTS/mbed_hal_fpga_ci_test_shield/gpio/main.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ void test_basic_input_output(PinName pin)
6464
gpio_init(&gpio, pin);
6565
TEST_ASSERT_NOT_EQUAL(0, gpio_is_connected(&gpio));
6666

67+
// Some targets don't support input pull mode.
68+
#if !defined(TARGET_NANO100) && \
69+
!defined(TARGET_NUC472) && \
70+
!defined(TARGET_M451)
6771
// Test GPIO used as an input.
6872
gpio_dir(&gpio, PIN_INPUT);
6973

@@ -105,6 +109,7 @@ void test_basic_input_output(PinName pin)
105109
TEST_ASSERT_EQUAL_INT(0, gpio_read(&gpio));
106110
tester.gpio_write(MbedTester::LogicalPinGPIO0, 1, true);
107111
TEST_ASSERT_EQUAL_INT(1, gpio_read(&gpio));
112+
#endif
108113

109114
// Test GPIO used as an output.
110115
tester.gpio_write(MbedTester::LogicalPinGPIO0, 0, false);
@@ -221,7 +226,12 @@ void test_explicit_output(PinName pin)
221226

222227
Case cases[] = {
223228
Case("generic init, input & output", all_ports<GPIOPort, DefaultFormFactor, test_basic_input_output>),
229+
// Some targets don't support input pull mode.
230+
#if !defined(TARGET_NANO100) && \
231+
!defined(TARGET_NUC472) && \
232+
!defined(TARGET_M451)
224233
Case("explicit init, input", all_ports<GPIOPort, DefaultFormFactor, test_explicit_input>),
234+
#endif
225235
Case("explicit init, output", all_ports<GPIOPort, DefaultFormFactor, test_explicit_output>),
226236
};
227237

0 commit comments

Comments
 (0)
Please sign in to comment.