I am learning about Zephyr and currently I am experimenting with the accelerometer on the Nordic Thingy91 device. For programming, I use VSCode and NCS v2.5.0
My full source code:
And my proj.conf:
The code above works without any issues. See the serial logs below as I move the device:
As you can see from my source code above, I use printk statements to print some information to serial terminal. I have decided to replace all printk statements with LOG_DBG.
After replacing all pritnk statements with LOG_DBG, I have ended up with the source code below:
After flashing the device, I get the following errors:
I cannot wrap my head around how can my code stop working when all I did was replace printk statements with LOG_DBG statements. I have even put both of my source codes back to back in diffchecker to check whether I have accidentally changed something else:
I would really appreciate if someone could help me understand this. Thanks!