This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

PCB design with nRF5340

I would like to make my own project of an analog sensor with BLE feature. Is it a good idea to go with third party module (because of the easy availability of Antenna)? can someone help me with the pcb design with nRF5340 SoC? I am using EAGLE as the design software!

Thanks and Regards,

Sreejith

Parents Reply Children
  • Hi Sreejith,

    The battery example is intended to be used with the thingy52, so to be able to use it with another device a  DeviceTree overlay file must be added with the missing configurations.  By copying the missing parts from the thingy52 devicetree into the overlay file you should be able to build it, but there may be other problems:

    /{
    	vbatt {
    		compatible = "voltage-divider";
    		io-channels = <&adc 4>;
    		output-ohms = <180000>;
    		full-ohms = <(1500000 + 180000)>;
    	};
    };
    &adc {
    	status = "okay";
    };

    I have since my previous comment discovered that our getting started guide with nRF Connect SDK tutorial have a section for setting up and using the ADC. Section 3.5 in part 2 of the tutorial is dedicated to using the ADC, I would recommend that you use this as a starting point instead of the battery example from Zephyr, since it is intended for the nRF5340.

    https://devzone.nordicsemi.com/guides/nrf-connect-sdk-guides/b/getting-started/posts/nrf-connect-sdk-tutorial---part-2-ncs-v1-4-0#h166sjwm56wzcmgvd418wzzus1esk5n3

    Keep in mind that this tutorial have not been updated since version 1.5.0, so there may be some changes needed for it to work with the current version of the nRF Connect SDK.

     

    Best regards,

    Bendik

Related