* hey, is there anything that one should be careful about when including a c library ? I pretty much finished a wrapper over a pretty big C SDK for a radar, it's my first attempt flashing it to my radar antenna, and not only i'm not getting any of the defmt prints after i run `probe-rs run`, but when running `probe-rs debug` my board is apparently hardfaulting and I can't tell why :x In order to be able to compile the image I had to include a few libraries in the linker ``` println!("cargo:rustc-link-lib=nosys"); println!("cargo:rustc-link-lib=m"); println!("cargo:rustc-link-lib=g_nano"); println!("cargo:rustc-link-lib=c_nano"); ``` Otherwise the code I'm attempting to run is pretty straightfoward, I set the config then run a simple loop that prints hello world, but I don't have a single print, without the SDK and on embassy examples the board runs fine Maybe i'm missing something, any clue ?