新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > ARM中關(guān)于設(shè)置寄存器的一點(diǎn)看法

ARM中關(guān)于設(shè)置寄存器的一點(diǎn)看法

作者: 時(shí)間:2016-11-09 來(lái)源:網(wǎng)絡(luò) 收藏
拿A/D轉(zhuǎn)換為例。
#define rADCCON(*(volatile unsigned*)0x58000000)    //ADC控制寄存器  #define rADCTSC(*(volatile unsigned*)0x58000004)     //ADC觸摸屏控制寄存器  #define rADCDLY(*(volatile unsigned*)0x58000008)     //ADC啟動(dòng)或間隔延時(shí)寄存器  #define rADCDAT0(*(volatile unsigned*)0x5800000c)    //ADC轉(zhuǎn)換數(shù)據(jù)寄存器0  #define rADCDAT1(*(volati1e unsigned*)0x58000010)   //ADC轉(zhuǎn)換數(shù)據(jù)寄存器     void AD_Init(unsigned char ch){        rADCDLY=100;                  //ADC啟動(dòng)或間隔延時(shí)        rADCTSC=0;                     //選擇ADC模式        rADCCON=(1<<14)|(49<<6)|(ch<<3)| (0<<2)|(0<<1)|(0);  //設(shè)置ADC控制寄存器      }    ......

關(guān)于設(shè)置ADC控制寄存器指令 : rADCCON=(1<<14)|(49<<6)|(ch<<3)| (0<<2)|(0<<1)|(0)

本文引用地址:http://m.butianyuan.cn/article/201611/317762.htm

其含義是:

1左移(以0位為準(zhǔn))14位,即設(shè)置ADCCON中的PRSCEN為1:使能;

49左移6位,即前置分頻器 分頻數(shù)值為50(當(dāng)前置分頻器數(shù)值為N時(shí),分頻數(shù)值為N+1);

ch是變量,輸入通道選擇設(shè)置;

備用模式為正常模式;

禁止讀操作啟動(dòng);

AD轉(zhuǎn)換不啟動(dòng)。



關(guān)鍵詞: ARM設(shè)置寄存

評(píng)論


技術(shù)專區(qū)

關(guān)閉