28 lines
882 B
C
Executable file
28 lines
882 B
C
Executable file
/*
|
|
** =============================================================================
|
|
** Copyright (c) 2016 Texas Instruments Inc.
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify it under
|
|
** the terms of the GNU General Public License as published by the Free Software
|
|
** Foundation; version 2.
|
|
**
|
|
** This program is distributed in the hope that it will be useful, but WITHOUT
|
|
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
** FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
**
|
|
** File:
|
|
** tas25xx-calib.h
|
|
**
|
|
** Description:
|
|
** header file for tas25xx-calib.c
|
|
**
|
|
** =============================================================================
|
|
*/
|
|
|
|
#ifndef _TAS25XX_CALIB_H
|
|
#define _TAS25XX_CALIB_H
|
|
|
|
int tas_calib_init(void);
|
|
void tas_calib_exit(void);
|
|
|
|
#endif /* _TAS25XX_CALIB_H */
|