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/11023/head
Filip Jagodzinski 2019-07-05 14:51:18 +02:00 committed by Evelyne Donnaes
parent 6902844cf2
commit 5a007262b4
8 changed files with 16 additions and 0 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"