QutiPi / meta-qutipi

Yocto layer for the Quti Pi development platform
0 stars 0 forks source link

Push button controller dtblob #34

Closed motters closed 5 years ago

motters commented 5 years ago

dtblob needs to be changed to allow the use of the push button controller. This can be done by editing https://github.com/QutiPi/meta-qutipi/blob/master/hardware/rpi-cm3-v1-full/recipes-bsp/dtblob/files/dt-blob.dts with the below

pin@p4 {
    function = "output";
        termination = "pull_up";
};

pin@p5 {
    function = "input";
    termination = "no_pulling";
};

pin@p6 {
    function = "input";
    termination = "no_pulling";
};
motters commented 5 years ago

https://github.com/QutiPi/meta-qutipi/commit/43a5e5c05c425f5fc9d43b5be9c3bef4826d3928