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

Device Tree Configuration Guidelines

Can Nordic provide general guidelines for manipulating the device tree configuration files for custom boards?

For instance, does the application require the exact same pin mapping as the SPM loader? If not, what if there are pin mappings for a UART during boot for instance, but the application disables the UART and repurposes those pins to GPIO in either the application device tree or the project's overlay file? Is the application required to use only a subset of the SPM peripherals? How are peripheral or pin conflicts resolved by the current build process which defaults to generating a merged hex file?

There also seem to be build issues with locating the out of tree board directory in the application directory, which would be preferable for simplifying application version control.

Parents Reply Children
  • Hi Simon,

    I totally agree with Steven: the DTS is far too complicated to quickly start a custom design. Here's a thought: how about a simple wizzard where we can add a board name and tick some peripherals and I/O's from a menu, and have it create the DTS for us?

    cheers,

    Henk

  • Thanks for the feedback. I've forwarded your suggestion internally.

    Best regards,

    Simon

  • Sorry to rehash an older thread, but I stumbled across this after searching through the DevZone for some assistance on creating my own GPIO definitions in a .overlay file.

    I won't bang on anymore than  has already about the challenges faced by newbies in navigating a lot of the stuff you need to learn to get up and running with NCS/Zephyr.

    But I have what seems like a simple task - create my own GPIO pin reference in an overlay file that will enable me to turn a FET on or off so I can sample the battery voltage via an ADC input.  I'm using P0.30 for my GPIO pin to control the FET, and P0.02 as the ADC input for measuring the battery voltage.

    This is what my overlay file looks like (it builds, but I've not yet tested it to ensure it works).  I've got to this point via a fair bit of trial and error, so if there is anything there that doesn't look 100% legit, please flag it up as I'll be honest - I've no real idea what I'm doing here!

    / {
    	zephyr,user {
    		io-channels = <&adc 0>;
    	};
    
    
    mypins {
        compatible = "gpio-keys";
        batteryen: batt_en {
            gpios = <&gpio0 30 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
            label = "Battery Enable";
        };
    };
    
    };

    A couple of questions:

    1.  Will io-channels = <&adc 0>; actually ensure I am accessing AIN0/P0.02?  I'm basing this on what is already in the nRF52DK board file for the arduino_adc.

    2. In my definition of the GPIO, what limits/restrictions/guidance is there in defining the references "batteryen", "batt_en".  And more importantly, what are they used for?

    3.  In the DK board file, there are a bunch of aliases for the LEDs and buttons.  Why would I use an alias instead of referencing whatever value I have at "batteryen"?

    I think its this level of support that is lacking in any documentation I've seen around Nordic devices.  Its like there is a certain level of competency you need to acquire in order to understand most of the info available, but getting to that point is akin to extracting the mythical "sword in the stone"

    Cheers,

    Mike

  • And then, how does this all come into the mix?  Is this an alternative to device tree overlay files?

    Cheers,

    Mike

  • Hi Mike,

    Please create a new ticket for your new questions, to help us keep DevZone tidy.

    You can link to this case in the new one as a reference.

    Regards,
    Sigurd Hellesvik

Related