新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > MSP430開發(fā)環(huán)境MSPGCC + Codeblocks

MSP430開發(fā)環(huán)境MSPGCC + Codeblocks

作者: 時間:2016-12-02 來源:網(wǎng)絡(luò) 收藏






保存。


5)新建一個項目。File->New->project->Empty project
一般我都只勾選Release,不要Debug






7)新建空白文件,并添加到項目中File->New->Empty file
輸入測試代碼。我的LaunchPad代碼(沒注釋的,見笑了):
#include

void delay(int duration)
{
volatile int d = duration;
while((d--) > 0)
{
}
}

int main(void)
{
WDTCTL = WDTPW | WDTHOLD;

P1OUT = 0x00;
P1DIR = 0x41;

while(1)
{
P1OUT = 0x40;
delay(5000);
P1OUT = 0x01;
delay(5000);
}
return 0;
}
提醒一下:delay函數(shù)里面的變量要加上volatile修飾。


評論


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

關(guān)閉