BLE/Nordic

인증 테스트 방법 (DTM)

또난 2017. 7. 4. 11:11

Nordic nRF51_52 Series Chipset BLE Test.pdf
다운로드

 

DTM 소스에서 main에서 타이머 동작 안됨.

 

dtm_wait()부분에서 for(;;) 에서 추가하여 작동해야 함.

 

 

else if (mp_timer->EVENTS_COMPARE[1] != 0)

{

            

if(led_time++ > 1000)

{

led_time = 0;

//nrf_gpio_pin_toggle(IOT_LED1);

nrf_gpio_pin_toggle(LED_1);

      }

// Reset timeout event flag for next iteration.

        mp_timer->EVENTS_COMPARE[1] = 0;

        NVIC_ClearPendingIRQ(m_timer_irq);

        return ++m_current_time;

}

 

 

 

'BLE > Nordic' 카테고리의 다른 글

NFC 관련 (일반 GPIO 설정)  (0) 2018.03.21
nRF52 DFU 부트로더 진입  (0) 2017.06.21