📄 agc.h
字号:
/*********************************************************************
* FileName: agc.h
* Dependencies: See INCLUDES section below
* Processor: PIC18
* Compiler: C18 2.30.01+
* Company: sprut
* Copyright: 2007-2010 Joerg Bredendiek (sprut)
*
*
********************************************************************/
/*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef AGC_H
#define AGC_H
/** I N C L U D E S **********************************************************/
#include "system\usb\usb.h"
#include "system\typedefs.h"
/** D E F I N I T I O N S ****************************************************/
/** S T R U C T U R E S ******************************************************/
/** P U B L I C P R O T O T Y P E S *****************************************/
void pwm_init(void);
word pwm_avr(void);
void agc_init(void);
word agc_Pegel(void);
word agc_Ref(void);
/** P R I V A T E P R O T O T Y P E S ***************************************/
word agc_Adc(void);
#endif // AGC_H
/**** E N D E adsbin.h *********************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -