23 lines
391 B
C
23 lines
391 B
C
/*
|
|
* Copyright (c)
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Email Notes
|
|
* 2022-04-11 Kevin.Liu kevin.liu.mchp@gmail.com First Release
|
|
*/
|
|
|
|
#ifndef __BOARD_SAM_I2C_H_
|
|
#define __BOARD_SAM_I2C_H_
|
|
|
|
#include <rtthread.h>
|
|
|
|
/**
|
|
* @brief External function definitions
|
|
*
|
|
*/
|
|
int rt_hw_i2c_init(void);
|
|
|
|
#endif // __BOARD_SAM_I2C_H_
|