mirror of https://github.com/ARMmbed/mbed-os.git
FPGA test shield: Restrict tests to Arduino FF only
Currently only the Arduino form factor is supported. Support for other form factors will be added in the future.pull/10975/head
parent
a415dfae2d
commit
d425dc9ba4
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] Analog in not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] Analog out not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
#if !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] test not supported
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] I2C not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] PWM not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] SPI not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] SERIAL not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !TARGET_FF_ARDUINO
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
Loading…
Reference in New Issue