版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、DSP入門簡析1如何編寫一個簡單的DSP程序環(huán)境設(shè)置好變量先聲明初始五步走認清寄存器2環(huán)境設(shè)置好選擇合適的CCS版本選擇合適的仿真器驅(qū)動對例程進行導(dǎo)入,并進行基本設(shè)置注意cmd文件與lib文件3變量先聲明利用完整的頭文件一般包括兩部分:Device.h和自己寫的h文件利用宏定義利用全局變量聲明、外部函數(shù)聲明貌似不聲明不報錯,只有warning4初始五步走初始化系統(tǒng)設(shè)置InitSysCtrl();初始化IO口設(shè)置InitGpio();關(guān)閉中斷,清中斷位DINT;IER = 0 x0000;IFR = 0 x0000;初始化PIE設(shè)置InitPieCitrl();InitPieVectTable(
2、);初始化其他外部設(shè)備InitPeripherals();5認清寄存器了解常用寄存器結(jié)構(gòu)GpioCtrlRegs GpioDataRegs GpioIntRegs了解常用語法GpioCtrlRegs.GPAMUX1.all = 0 x00000000; 6例程1#include DSP28x_Project.h / Device Header Examples Include File/ Select the example to compile in. Only one example should be set as 1/ the rest should be set as 0.#defi
3、ne EXAMPLE1 0 / Use DATA registers to toggle I/Os#define EXAMPLE2 0 / Use SET/CLEAR registers to toggle I/Os#define EXAMPLE3 1 / Use TOGGLE registers to toggle I/Os/ Prototype statements for functions found within this file.void delay_loop(void);void Gpio_select(void);void Gpio_example1(void);void G
4、pio_example2(void);void Gpio_example3(void);7void main(void)/ Step 1. Initialize System Control: InitSysCtrl(); / Step 2. Initalize GPIO: / InitGpio(); / Skipped for this example/ For this example use the following configuration: Gpio_select(); / Step 3. Clear all interrupts and initialize PIE vecto
5、r table:/ Disable CPU interrupts DINT;8/ Initialize PIE control registers to their default state. InitPieCtrl();/ Disable CPU interrupts and clear all CPU interrupt flags: IER = 0 x0000; IFR = 0 x0000;/ Initialize the PIE vector table with pointers to the shell Interrupt / Service Routines (ISR). In
6、itPieVectTable();9/ Step 4. Initialize all the Device Peripherals:/ InitPeripherals(); / Not required for this example#if EXAMPLE1 / This example uses DATA registers to toggle I/Os Gpio_example1();#endif / - EXAMPLE1#if EXAMPLE2 / This example uses SET/CLEAR registers to toggle I/Os Gpio_example2();
7、#endif#if EXAMPLE3 / This example uses TOGGLE registers to toggle I/Os Gpio_example3();#endif10void Gpio_select(void) EALLOW; GpioCtrlRegs.GPAMUX1.all = 0 x00000000; / All GPIO GpioCtrlRegs.GPAMUX2.all = 0 x00000000; / All GPIO GpioCtrlRegs.GPBMUX1.all = 0 x00000000; / All GPIO GpioCtrlRegs.GPADIR.a
8、ll = 0 xFFFFFFFF; / All outputs GpioCtrlRegs.GPBDIR.all = 0 x0000000F; / All outputs EDIS; 11void Gpio_example1(void) / Example 1: / Toggle I/Os using DATA registers for(;) GpioDataRegs.GPADAT.all =0 xAAAAAAAA; GpioDataRegs.GPBDAT.all =0 x0000000A; delay_loop(); GpioDataRegs.GPADAT.all =0 x55555555;
9、 GpioDataRegs.GPBDAT.all =0 x00000005; delay_loop(); 12void Gpio_example2(void) / Example 2: / Toggle I/Os using SET/CLEAR registers for(;) GpioDataRegs.GPASET.all =0 xAAAAAAAA; GpioDataRegs.GPACLEAR.all =0 x55555555; GpioDataRegs.GPBSET.all =0 x0000000A; GpioDataRegs.GPBCLEAR.all =0 x00000005; dela
10、y_loop(); GpioDataRegs.GPACLEAR.all =0 xAAAAAAAA; GpioDataRegs.GPASET.all =0 x55555555; GpioDataRegs.GPBCLEAR.all =0 x0000000A; GpioDataRegs.GPBSET.all =0 x00000005; delay_loop(); 13void Gpio_example3(void) / Example 2: / Toggle I/Os using TOGGLE registers / Set pins to a known state GpioDataRegs.GPASET.all =0 xAAAAAAAA; GpioDataRegs.GPACLEAR.all =0 x55555555; GpioDataRegs.GPBSET.all =0 x0000000A; GpioDataRegs.GPBCLEAR.all =0 x00000005; / Use TOGGLE registers to flip the state of the pins. / Any bit set to a 1 will flip state (toggle) / Any bit set to a 0 will not toggl
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 辦公室環(huán)境與行為規(guī)范
- IT運維管理解決方案及其實施方法
- 在線教育服務(wù)用戶使用免責協(xié)議
- 市場營銷手冊市場分析與推廣策略指南
- 車聯(lián)網(wǎng)智能車輛服務(wù)平臺設(shè)計及實施方略制定
- 塑料行業(yè)循環(huán)經(jīng)濟與綠色生產(chǎn)方案
- 倉儲管理技術(shù)在物流行業(yè)升級實踐
- 小學教師成長故事征文
- 初一二次月考數(shù)學試卷
- 低碳環(huán)保綠色能源投資促進合作協(xié)議
- (高清版)JTG D50-2017 公路瀝青路面設(shè)計規(guī)范
- DZ∕T 0054-2014 定向鉆探技術(shù)規(guī)程(正式版)
- 《幼兒安全》安安全全坐火車
- 國家開放大學-法學專業(yè)-2023年秋季《法律文化》形成性考核作業(yè)答案
- 中班語言活動《我長大了》課件
- 如何玩轉(zhuǎn)抖音本地生活
- 超星爾雅學習通《中華傳統(tǒng)文化之戲曲瑰寶(中國戲曲音樂學會)》2024章節(jié)測試答案
- 智慧水務(wù)系統(tǒng)市場分析及行業(yè)前景展望報告
- 肺結(jié)節(jié)診治指南
- 2024年濟南歷城區(qū)九年級中考化學一??荚囋囶}(含答案)
- 2024年山東能源集團大方綠塘煤礦有限公司招聘筆試參考題庫含答案解析
評論
0/150
提交評論