新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > LM3S9B96 IAR 新建一個(gè)工程

LM3S9B96 IAR 新建一個(gè)工程

作者: 時(shí)間:2016-11-11 來(lái)源:網(wǎng)絡(luò) 收藏
以閃爍LED為例,講解如何新建一個(gè)project,并配置工程選項(xiàng)。
重點(diǎn):1) $PROJ_DIR$ 代表什么
2) 需要哪些庫(kù),到開(kāi)發(fā)板提供的光盤中找

#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"

/* 寄存器地址 ---------------------------------------------------------------*/
#define GPIO_PORTF_APB_DIR_R 0x40025400
#define GPIO_PORTF_APB_DEN_R 0x4002551C

/* 用于調(diào)試 PF1 <-> LED -----------------------------------------------------*/
#define LED_PERIPH SYSCTL_PERIPH_GPIOF
#define LED_PORT GPIO_PORTF_BASE
#define LED_PIN GPIO_PIN_1
#define LED_OFF 1 << 1
#define LED_ON ~(1 << 1) // 低電平點(diǎn)亮LED

void Delay(volatile signed long nCount)
{
for(; nCount != 0; nCount--);
}


int main(void)
{
// Set the clocking to run directly from the crystal.
SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN | SYSCTL_XTAL_16MHZ);

SysCtlPeripheralEnable(LED_PERIPH); // 使能LED所在的GPIO端口

GPIOPinTypeGPIOOutput(LED_PORT, LED_PIN); // 設(shè)置LED所在管腳為輸出

while (1)
{
GPIOPinWrite(LED_PORT, LED_PIN, LED_ON); //點(diǎn)亮LED
Delay(0xfffff);
GPIOPinWrite(LED_PORT, LED_PIN, LED_OFF); //熄滅LED
Delay(0xfffff);
}
}

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



關(guān)鍵詞: LM3S9B96IAR工

評(píng)論


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

關(guān)閉