资源简介
嵌入式/单片机开发示例程序,包括从最基础的led,键盘,到nand flash等相对深度的程序。
代码片段和文件信息
/*
* FILE: adc_ts.c
* ADC和触摸屏的测试函数
*/
#include
#include “adc_ts.h“
#include “s3c24xx.h“
#include “serial.h“
// ADCCON寄存器
#define PRESCALE_DIS (0 << 14)
#define PRESCALE_EN (1 << 14)
#define PRSCVL(x) ((x) << 6)
#define ADC_INPUT(x) ((x) << 3)
#define ADC_START (1 << 0)
#define ADC_ENDCVT (1 << 15)
// ADCTSC寄存器
#define UD_SEN (1 << 8)
#define DOWN_INT (UD_SEN*0)
#define UP_INT (UD_SEN*1)
#define YM_SEN (1 << 7)
#define YM_HIZ (YM_SEN*0)
#define YM_GND (YM_SEN*1)
#define YP_SEN (1 << 6)
#define YP_EXTVLT (YP_SEN*0)
#define YP_AIN (YP_SEN*1)
#define XM_SEN (1 << 5)
#define XM_HIZ (XM_SEN*0)
#define XM_GND (XM_SEN*1)
#define XP_SEN (1 << 4)
#define XP_EXTVLT (XP_SEN*0)
#define XP_AIN (XP_SEN*1)
#define XP_PULL_UP (1 << 3)
#define XP_PULL_UP_EN (XP_PULL_UP*0)
#define XP_PULL_UP_DIS (XP_PULL_UP*1)
#define AUTO_PST (1 << 2)
#define CONVERT_MAN (AUTO_PST*0)
#define CONVERT_AUTO (AUTO_PST*1)
#define XP_PST(x) (x << 0)
#define NOP_MODE 0
#define X_AXIS_MODE 1
#define Y_AXIS_MODE 2
#define WAIT_INT_MODE 3
/* 设置进入等待中断模式,XP_PUXP_DisXM_DisYP_DisYM_En
* (1)对于S3C2410,位[8]只能为0,所以只能使用下面的wait_down_int,
* 它既等待Pen Down中断,也等待Pen Up中断
* (2)对于S3C2440,位[8]为0、1时分别表示等待Pen Down中断或Pen Up中断
*/
/* 进入“等待中断模式“,等待触摸屏被按下 */
#define wait_down_int() { ADCTSC = DOWN_INT | XP_PULL_UP_EN | \
XP_AIN | XM_HIZ | YP_AIN | YM_GND | \
XP_PST(WAIT_INT_MODE); }
/* 进入“等待中断模式“,等待触摸屏被松开 */
#define wait_up_int() { ADCTSC = UP_INT | XP_PULL_UP_EN | XP_AIN | XM_HIZ | \
YP_AIN | YM_GND | XP_PST(WAIT_INT_MODE); }
/* 进入自动(连续) X/Y轴坐标转换模式 */
#define mode_auto_xy() { ADCTSC = CONVERT_AUTO | XP_PULL_UP_DIS | XP_PST(NOP_MODE); }
extern void (*isr_handle_array[50])(void);
/*
* 使用查询方式读取A/D转换值
* 输入参数:
* ch: 模拟信号通道,取值为0~7
*/
static int ReadAdc(int ch)
{
// 选择模拟通道,使能预分频功能,设置A/D转换器的时钟 = PCLK/(49+1)
ADCCON = PRESCALE_EN | PRSCVL(49) | ADC_INPUT(ch);
// 清除位[2],设为普通转换模式
ADCTSC &= ~(1<<2);
// 设置位[0]为1,启动A/D转换
ADCCON |= ADC_START;
// 当A/D转换真正开始时,位[0]会自动清0
while (ADCCON & ADC_START);
// 检测位[15],当它为1时表示转换结束
while (!(ADCCON & ADC_ENDCVT));
// 读取数据
return (ADCDAT0 & 0x3ff);
}
/*
* 测试ADC
* 通过A/D转换,测量可变电阻器的电压值
*/
void Test_Adc(void)
{
float vol0 vol1;
int t0 t1;
printf(“Measuring the voltage of AIN0 and AIN1 press any key to exit\n\r“);
while (!awaitkey(0)) // 串口无输入,则不断测试
{
vol0 = ((float)ReadAdc(0)*3.3)/1024.0; // 计算电压值
vol1 = ((float)ReadAdc(1)*3.3)/1024.0; // 计算电压值
t0 = (vol0 - (int)vol0) * 1000; // 计算小数部分 本代码中的printf无法打印浮点数
t1 = (vo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-10-21 14:27 hardware\
目录 0 2016-10-21 14:27 hardware\adc_ts\
文件 6088 2008-03-07 01:33 hardware\adc_ts\adc_ts.c
文件 293 2008-03-07 01:33 hardware\adc_ts\adc_ts.h
文件 382 2008-03-07 01:33 hardware\adc_ts\adc_ts.lds
文件 2845 2008-03-07 01:33 hardware\adc_ts\head.S
目录 0 2016-10-21 14:27 hardware\adc_ts\include\
文件 1344 2008-03-07 01:33 hardware\adc_ts\include\ctype.h
文件 733 2008-03-07 01:33 hardware\adc_ts\include\gcclib.h
文件 187 2008-03-07 01:33 hardware\adc_ts\include\kernel.h
文件 686 2008-03-07 01:33 hardware\adc_ts\include\stdio.h
文件 2001 2008-03-07 01:33 hardware\adc_ts\include\string.h
文件 10005 2008-03-07 01:33 hardware\adc_ts\include\system.h
文件 195 2008-03-07 01:33 hardware\adc_ts\include\types.h
文件 3497 2008-03-07 01:33 hardware\adc_ts\init.c
文件 742 2008-03-07 01:33 hardware\adc_ts\interrupt.c
文件 20 2008-03-07 01:33 hardware\adc_ts\interrupt.h
目录 0 2016-10-21 14:27 hardware\adc_ts\lib\
文件 1313 2008-03-07 01:33 hardware\adc_ts\lib\ctype.c
文件 1217 2008-03-07 01:33 hardware\adc_ts\lib\div64.h
文件 3977 2008-03-07 01:33 hardware\adc_ts\lib\div64.S
文件 7442 2008-03-07 01:33 hardware\adc_ts\lib\lib1funcs.S
文件 241 2008-03-07 01:33 hardware\adc_ts\lib\Makefile
文件 2854 2008-03-07 01:33 hardware\adc_ts\lib\muldi3.c
文件 816 2008-03-07 01:33 hardware\adc_ts\lib\printf.c
文件 130 2008-03-07 01:33 hardware\adc_ts\lib\printf.h
文件 10882 2008-03-07 01:33 hardware\adc_ts\lib\string.c
文件 18939 2008-03-07 01:33 hardware\adc_ts\lib\vsprintf.c
文件 1658 2008-03-07 01:33 hardware\adc_ts\lib\vsprintf.h
文件 842 2008-03-07 01:33 hardware\adc_ts\main.c
文件 833 2008-03-07 01:33 hardware\adc_ts\Makefile
............此处省略210个文件信息
- 上一篇:南邮离散数学实验全部源码
- 下一篇:51单片机驱动74hc595去控制8位数码管
评论
共有 条评论