This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Radio test

hello

I have questions.

1) The difference between start_tx_carrier and start_tx_modulated_carrier
    Are both start_tx_carrier  and start_tx_modulated_carrier sending data continuously?
   Start_rx clears the data buffer? Sending start_tx_carreir keeps receiving data from other boards and sending start_tx_modulated_carreir does not accumulate data.
   However, when looking at the equipment, sending start_tx_carreir keeps sending data.

2) How do send data when duty is set in start_duty_cycle_modulated_tx? Do keep sending data?

3) what is log_mempool?

4) what is cli stats show, cli stats reset?

  • Hi,

     

    1) The difference between start_tx_carrier and start_tx_modulated_carrier
        Are both start_tx_carrier  and start_tx_modulated_carrier sending data continuously?
       Start_rx clears the data buffer? Sending start_tx_carreir keeps receiving data from other boards and sending start_tx_modulated_carreir does not accumulate data.
       However, when looking at the equipment, sending start_tx_carreir keeps sending data.

     start_tx_carrier starts a unmodulated carrier; a carrier without any information, which is basically a clean sine wave.

    start_tx_modulated_carrier is a modulated signal, which holds data.

    Start rx just starts the receiver, on the specified config that you enter. If there is a received signal that matches the address, and so forth; a payload is received. You can only receive a modulated signal.

    2) How do send data when duty is set in start_duty_cycle_modulated_tx? Do keep sending data?

    The radio is then triggered by a timer, which calculates the length of the packet, and sets the duty cycle based on that. See radio_test.c::radio_modulated_tx_carrier_duty_cycle() for more info.

    3) what is log_mempool?

     That is the internal memory buffer pool for the logging/CLI interface.

    4) what is cli stats show, cli stats reset?

     That is related to the CLI module, where it prints info regarding itself (lost logs + max log queue utilization):

    uart_cli:~$ cli stats show
    Lost logs: 0
    Max log queue utilization: 5% [1/20]

     

    Kind regards,

    Håkon

  • Thank you for you answer!

    I have a one more question.

    What is a 'carrier'???

  • kevin seo said:

    Thank you for you answer!

    I have a one more question.

    What is a 'carrier'???

    Happy to help.

    A "carrier" is the RF output signal in this context.

     

    Kind regards,

    Håkon

Related