Some files made it through review process with full license header. Change-Id: I2722b127c40b4b19500042c12e4fde85a165bae9 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
59 lines
1.1 KiB
C
59 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup t_driver_i2c
|
|
* @{
|
|
* @defgroup t_i2c_basic test_i2c_basic_operations
|
|
* @}
|
|
*
|
|
* Setup: Connect Sensor GY271 to I2C_0 on X86 and I2C_SS_0 on ARC
|
|
*
|
|
* quark_se_c1000_devboard - x86
|
|
* ----------------------
|
|
*
|
|
* 1. GY271_SCL - I2C0_SCL
|
|
* 2. GY271_SDA - I2C0_SDA
|
|
*
|
|
* quark_se_c1000_ss_devboard - arc
|
|
* ----------------------
|
|
*
|
|
* 1. GY271_SCL - I2C0_SS_SCL
|
|
* 2. GY271_SDA - I2C0_SS_SDA
|
|
*
|
|
* quark_d2000 - x86
|
|
* ----------------------
|
|
*
|
|
* 1. GY271_SCL - I2C_SCL
|
|
* 2. GY271_SDA - I2C_SDA
|
|
*
|
|
* arduino_101 - x86
|
|
* ----------------------
|
|
*
|
|
* 1. GY271_SCL - I2C0_SCL
|
|
* 2. GY271_SDA - I2C0_SDA
|
|
*
|
|
* arduino_101_ss - arc
|
|
* ----------------------
|
|
*
|
|
* 1. GY271_SCL - I2C0_SS_SCL
|
|
* 2. GY271_SDA - I2C0_SS_SDA
|
|
*/
|
|
|
|
#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);
|
|
}
|