⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adc_demo.h

📁 freescale k40/k60 adc 例程
💻 H
字号:
/******************************************************************************
* File:    ADC_PDB.h
* Purpose: header file for ADC_PDB.c
* Note: 
******************************************************************************/

#ifndef __ADC_PDB_H
#define __ADC_PDB_H 1



/*     #defines  */

#define PIN_LOW     GPIOA_PCOR = 0x01 << 29;               // clear
#define PIN_HIGH    GPIOA_PSOR = 0x01 << 29;               // set


void delay(void);
void Init_Gpio(void);


// This is included in case some filtering is needed on the ADC input
// to faciliate DSP code developments

#include "dsp.h"

#endif  //__ADC_PDB_H

/* End of "ADC_PDB.h" */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -