19 lines
321 B
C
19 lines
321 B
C
/*
|
|
* fml_master_iic.h
|
|
*
|
|
* Created on: 2025年4月7日
|
|
* Author: 22332
|
|
*/
|
|
|
|
#ifndef FML_MASTER_IIC_H_
|
|
#define FML_MASTER_IIC_H_
|
|
|
|
#define SLAVE_ADDR_MAX25512 0x22U
|
|
#define SLAVE_ADDR_TFT 0x60U
|
|
#define SLAVE_ADDR_PMIC 0x6BU
|
|
|
|
|
|
extern void fml_master_init(void);
|
|
|
|
#endif /* FML_MASTER_IIC_H_ */
|