|
我也是自己建的KEIL5工程,可以编译、下载,运行正常。
main.c如下:
#include "nrf51.h"
#include "led.h"
#include "uart.h"
#include "nrf_delay.h"
#include "time.h"
int main(void)
{
LED_Init();
USART_Configuration();
while (1)
{
printf("hello\n");
LED1_Open();
LED2_Close();
nrf_delay_ms(1000);
LED2_Open();
LED1_Close();
nrf_delay_ms(1000);
LED1_Toggle();
nrf_timer_delay_ms(TIMER0, TIMER_DELAY_MS);
LED1_Toggle();
nrf_timer_delay_ms(TIMER1, TIMER_DELAY_MS);
LED1_Toggle();
nrf_timer_delay_ms(TIMER2, TIMER_DELAY_MS);
}
}
用的是s110,
据说这个define很重要,一定要有。
新建工程,先选MCU,然后添加相应的设备、库文件、驱动文件,main文件,设置好include路径,然后编译,下载或debug都正常。
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|