Hello,
The following warning occures when I build the SLM Shell sample (Not changed original code).<stdout>: Warning (gpios_property): /chosen:ncs,slm-gpio: property size (37) is invalid, expected multiple of 4
[Build Configuration]
- Target sample: SLM Shell (https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/cellular/slm_shell/README.html)
- Board: nrf5340dk_nrf5340_cpuapp
- toolchains: v2.6.0
- SDK: v2.6.0
- Using nRF Connect on VS Code
---
I think the following settings of devicetree (nrf5340dk_nrf5340_cpuapp.overlay) are causing this warning.
But, I don't know how to deal with it.
/ {
chosen {
ncs,slm-uart = &uart2;
ncs,slm-gpio = &gpio0;
};
};
Do you know what causes this warning?
Can I ignore this warning? Or do I need to do something about it?
Thank you.