nrf pwm1 nRF51 DK 예제 10 - PWM 이번 예제는 PWM입니다. Timer를 이용하여 LED를 toggle하는데, 버튼을 누를때마다 토글되는 간격이 변하는 PWM예제입니다. main.c 1234567891011121314151617181920212223int main(void){ gpiote_init(); bsp_configuration(); ppi_init(); timer2_init(); NRF_POWER->TASKS_CONSTLAT = 1; // Enable interrupt on Timer 2. NVIC_EnableIRQ(TIMER2_IRQn); __enable_irq(); *(uint32_t *)0x4000AC0C = 1; // Start the timer. NRF_TIMER2->TASKS_START = 1; while (true) .. 2015. 3. 4. 이전 1 다음 인기글