nRF9161 Getting the high accuracy oscillator (HFXO) outside and sync with other nrf chips?

Question: nRF9161 Getting the high accuracy oscillator (HFXO) outside and sync with other nrf chips?

Basically I want to get the Clock Signal outside on a Pin, is it an option?
How can I achivew this and bring out the Clock Signal?

Goal
I want to use this Clock on another nrf Chip instead of external Clock, just this Clock Signal.


Hopefully someone have good news for me.


kind regards

Parents Reply Children
  • Hello,

    thanks for your response!
    Sorry for my confusion ... shame on me.

    here is my plan:

    Actually I was checking all the options in how could I synchronize the clocks between many nrf9161-DK in the first place, for a project there will be similar/same Chipsets used.
    They should synchronize with a clock, also the radios on those DK should be synced with a clock.
    So a simple transmit scenario at the same time with different setups could be achieved.

    I found out that the external clock support for nrf9161-DK is not really an option, no external osszilator input is possible, so far I understand.

    But I could maybe test the way out --> fetching the Clock Source from one nrf9161-DK Board and put it with pwm or something else outside on a GPIO and route this/wire this to another nrf9161-DK Board.

    This is my plan/scenario I am currently experimenting on.

    I found out that for the radio the HFCLK can be used as a source but will be deriving to a LFCLK.
    But this is all I know right now.

    Maybe you have some input for me?


    I am just checking this website, documentation, samples/examples and experiment around with some Code.


    greetings

  • schnitzlein said:
    But I could maybe test the way out --> fetching the Clock Source from one nrf9161-DK Board and put it with pwm or something else outside on a GPIO and route this/wire this to another nrf9161-DK Board.

    The closest I could find to achieve something similar is to use DPPI - Distributed programmable peripheral interconnect and GPIOTE — GPIO tasks and events. You can use our nrfx generic ppi layer that provides the common functionality of PPI and DPPI(nRF53/nRF91) drivers.

    There is a small sample available here, showing how to use the nrfx_gpiote, nrfx_gppi and nrfx_timer drivers to implement a simple pulse counter mechanism. This is based on nRF Connect SDK v2.5.2. 

    Let me know if that helps to find the right path Slight smile

    Kind regards,
    Øyvind

Related