ivmarkov
ivmarkov
> I've actually also tried to use this library, but failed to get it working since the rest of my project is using the standard library. As far as I...
> I'd also be very interested to know how to get started with BLE using this library, or what still needs doing. > > I've managed to get a simple...
> > > I've actually also tried to use this library, but failed to get it working since the rest of my project is using the standard library. As far...
> That really clarifies a lot. Thank you so much! I'll read this again tomorrow until it's engrained in my brain :). > > In the meantime, I'll see why...
Oh and remove this completely: ```rust #[panic_handler] #[allow(dead_code)] fn panic(info: &core::panic::PanicInfo) -> ! { ::log::error!("{:?}", info); unsafe { esp_idf_sys::abort() } } ```
> What is preventing adding '[_esp32-nimble_](https://github.com/taks/esp32-nimble)' to '_esp-idf-svc_' and closing this issue? @taks Any interest in contributing your library and merging it/adjusting it with what is already available [here](https://github.com/esp-rs/esp-idf-svc/blob/master/src/bt.rs#L27)?
During compilation... are you using and passing to the gcc compiler all supplied include files and in general all Cargs?
For compilation we use cmake btw, not invoking the C compiler directly...
> Ok, so as far as I can see, there really is no magic gcc flag, it uses `xtensa-esp-elf-gcc` for the actual compilation in Cmake, the xtensa-esp-elf-gcc (without the model...
> I see, thx for the context. `xtensa-esp-elf-gcc --target-help` has a 'dynconfig' option and `xtensa-esp-elf-gcc --help` also says a "spec" option, I was wondering if either of those are influencing...