board configuration BT840F.

my costom board is based upon the BT840F fanstell board.
I know that this board is based on the nrf52840 QIAA SOC. 
but I also understand that nrf52840 QIAA has different configurations as I see here:
 https://docs.nordicsemi.com/bundle/ps_nrf52840/page/ref_circuitry.html
how can I know which configuration BT840F uses? 
is it the same as the nrf52840dk?

thanks in advance, 
-Shlomo

Parents Reply
  • I am trying to use pin09, of port 0.
    from what I learned, on the dk you cant use this pin for general purposes without adding this to the device tree 

    &uicr {
        nfct-pins-as-gpios;
    };
    and adding a solder bridge.

    but on a custom board, 
    this: 
    &uicr {
        nfct-pins-as-gpios;
    };
    should suffice.
    Still, I am not able to use this pin with my app.
    this is a simple app that sends chars through uart and I know that with unreserved pins on the dk it works ok.
    It also works on my custom board if I use different pins, just using pin 9 doesn't seem to work.
    I have a codebase that works with the old SDK in which we were able to use this pin. are there any additional steps that should be taken in order to use this pin on the BT840F with the new SDK?
Children
Related