22 lines
291 B
C
22 lines
291 B
C
#ifndef __ADS8691_H__
|
|
#define __ADS8691_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "app_config.h"
|
|
#include "adc_drv_if.h"
|
|
|
|
#if (DEF_ADS8691_ENABLED)
|
|
|
|
extern const adc_drv_if_t ads8691;
|
|
|
|
#endif /* ! DEF_ADS8691_ENABLED */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __ADS8691_H__ */
|