Programing/ Nordic(BLE) 썸네일형 리스트형 LED 깜빡이기 123456789101112131415161718#include #include #include "nrf_delay.h"#include "nrf_gpio.h"#include "boards.h" int main(void) { // Configure LED-pins as outputs. nrf_gpio_cfg_output(LED_1); // Toggle LEDs. while (true) { nrf_gpio_pin_set(LED_1); nrf_delay_ms(500); nrf_gpio_pin_clear(LED_1); nrf_delay_ms(500); }}Colored by Color Scriptercs 타이머 인터럽트 예제 blinky_rtx_pca10028을 이용해서 변경한것입니다.rtx는 CMSIS-RTOS를 나타낸다고합니다.1234567891011121314151617181920212223242526272829303132#include #include #include "nrf_gpio.h"#include "bsp.h"#include "cmsis_os.h" //인터럽트 인터벌#define LED_1_INTERVAL 100 void timer1_handler(void const * arg) { //타이머 인터럽트가 발생할때 해야할 일 nrf_gpio_pin_toggle(LED_1);} //타이머 콜백 함수osTimerDef(led_toggle_timer1, timer1_handler); int main(void) {.. Nordic에서 나온 nRF51422 & nRF51822 BLE를 사용해보려고 Nordic에서 나온 nRF51422와 nRF51822 개발 보드를 구입했습니다.nRF51422를 기준으로 글이 작성될것입니다.만날 PIC만하다가 다른 칩을 사용하려니 어럽네요.개발 환경 구성하는것은 다른분들고 많이 작성해 주셔서 따로 포스팅 할지는 모르겠습니다. 이전 1 2 3 다음