This board and SoC was discontinued some time ago and is currently not maintained in the zephyr tree. Remove all associated configurations and variants from the tree. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
20 lines
372 B
C
20 lines
372 B
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
#include <ztest.h>
|
|
|
|
extern void test_i2c_gy271(void);
|
|
extern void test_i2c_burst_gy271(void);
|
|
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(i2c_test,
|
|
ztest_unit_test(test_i2c_gy271),
|
|
ztest_unit_test(test_i2c_burst_gy271));
|
|
ztest_run_test_suite(i2c_test);
|
|
}
|