17 lines
542 B
C
17 lines
542 B
C
/*******************************************************************************
|
|
* @file ad5272_i2c.h
|
|
* @brief AD5272 Digital Potentiometer Stub Header
|
|
* @note Stub for MINIMAL_BOOT mode - functions not implemented
|
|
******************************************************************************/
|
|
|
|
#ifndef AD5272_I2C_H
|
|
#define AD5272_I2C_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Stub functions - do nothing in MINIMAL mode */
|
|
static inline void ad5272_i2c_init(void) { }
|
|
static inline void ad5272_normal_mode(void) { }
|
|
|
|
#endif /* AD5272_I2C_H */
|