mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	CI: Move all UT in driver to test_app
This commit is contained in:
		@@ -275,6 +275,7 @@ static inline void i2c_ll_set_slave_addr(i2c_dev_t *hw, uint16_t slave_addr, boo
 | 
			
		||||
 *
 | 
			
		||||
 * @return None
 | 
			
		||||
 */
 | 
			
		||||
__attribute__((always_inline))
 | 
			
		||||
static inline void i2c_ll_write_cmd_reg(i2c_dev_t *hw, i2c_ll_hw_cmd_t cmd, int cmd_idx)
 | 
			
		||||
{
 | 
			
		||||
    hw->command[cmd_idx].val = cmd.val;
 | 
			
		||||
@@ -454,6 +455,7 @@ static inline void i2c_ll_get_tout(i2c_dev_t *hw, int *timeout)
 | 
			
		||||
 *
 | 
			
		||||
 * @return None
 | 
			
		||||
 */
 | 
			
		||||
__attribute__((always_inline))
 | 
			
		||||
static inline void i2c_ll_trans_start(i2c_dev_t *hw)
 | 
			
		||||
{
 | 
			
		||||
    hw->ctr.trans_start = 1;
 | 
			
		||||
@@ -666,6 +668,7 @@ static inline void i2c_ll_slave_init(i2c_dev_t *hw)
 | 
			
		||||
 *
 | 
			
		||||
 * @return None
 | 
			
		||||
 */
 | 
			
		||||
__attribute__((always_inline))
 | 
			
		||||
static inline void i2c_ll_update(i2c_dev_t *hw)
 | 
			
		||||
{
 | 
			
		||||
    ;// ESP32 do not support
 | 
			
		||||
@@ -861,6 +864,7 @@ static inline void i2c_ll_slave_disable_rx_it(i2c_dev_t *hw)
 | 
			
		||||
 *
 | 
			
		||||
 * @return None
 | 
			
		||||
 */
 | 
			
		||||
__attribute__((always_inline))
 | 
			
		||||
static inline void i2c_ll_master_enable_tx_it(i2c_dev_t *hw)
 | 
			
		||||
{
 | 
			
		||||
    hw->int_clr.val = UINT32_MAX;
 | 
			
		||||
@@ -874,6 +878,7 @@ static inline void i2c_ll_master_enable_tx_it(i2c_dev_t *hw)
 | 
			
		||||
 *
 | 
			
		||||
 * @return None
 | 
			
		||||
 */
 | 
			
		||||
__attribute__((always_inline))
 | 
			
		||||
static inline void i2c_ll_master_enable_rx_it(i2c_dev_t *hw)
 | 
			
		||||
{
 | 
			
		||||
    hw->int_clr.val = UINT32_MAX;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user