Running simple project with Softdevice and SDK 17.1.0

Hello,

I am developing a new application using nRF52832 and writing and debugging code on Segger embedded studio (Release 5.68) with SDK v17.1.0. 

I try to run simple application like the one below:

-------------------------

int main(void)

{

SEGGER_RTT_printf(0, "firmware started\n");

while(1)

{

 SEGGER_RTT_printf(0, "test\n");

nrf_delay_ms(1000);

}

}

--------------------

The application has been tested on both development kit board and my own board with same result. When I display RTT terminal, I get straigth away 7 messages "test" and then no more messages like if microcontroller when to sleep. 

I have two questions:

1) nrf_delay_ms doesn't operate correctly. I ahev already read some thread about this issue but none of what I read helped me. Any suggestions?

2) Is there any necessary code to keep awake micro in the main loop like idle_state_handle() function etc...

Thank you for your help

Parents
  • Hello,

    It may be that since you are printing the same thing over and over, it actually writes it again, but since the content of the buffer doesn't change, the RTT terminal doesn't realize it is a new log record. The RTT buffer is just an area in the RAM that the debugger continuously monitors. 

    Can you try the following:

    int main(void)
    {
        uint32_t dummy_counter = 0;
        SEGGER_RTT_printf(0, "firmware started\n");
        
        while(1)
        
        {
            
            SEGGER_RTT_printf(0, "test %d\n", dummy_counter);
            dummy_counter++;
            nrf_delay_ms(1000);
            
        }
    
    }

    and see if the behavior changes?

    Best regards,

    Edvin

Reply
  • Hello,

    It may be that since you are printing the same thing over and over, it actually writes it again, but since the content of the buffer doesn't change, the RTT terminal doesn't realize it is a new log record. The RTT buffer is just an area in the RAM that the debugger continuously monitors. 

    Can you try the following:

    int main(void)
    {
        uint32_t dummy_counter = 0;
        SEGGER_RTT_printf(0, "firmware started\n");
        
        while(1)
        
        {
            
            SEGGER_RTT_printf(0, "test %d\n", dummy_counter);
            dummy_counter++;
            nrf_delay_ms(1000);
            
        }
    
    }

    and see if the behavior changes?

    Best regards,

    Edvin

Children
Related