Ulf Lilleengen

Results 213 comments of Ulf Lilleengen

I don't know the esp hal, but some searching through esp-hal I think I found some reset functions here https://github.com/esp-rs/esp-hal/blob/9edd098da56be11dde2ba7cd8ecffaaea23cb030/esp-hal/src/reset.rs#L106-L124 So the idea would be to replace the cortex-m bits...

I think the simpler we can make the macros deal with the common cases, the better. If you need more advanced functionality, there is always the option of using the...

What I typically do is to have library fn's expose some toplevel 'task' fn, and then have an equivalent non-generic variant in the main application with the embassy task macro....

> > The flash size is already available in bytes through the embassy_stm32::flash::FLASH_SIZE constant. > > In a similar way, the device id might also be part of the stm32-data/metapac...

I think with the nrf53, you can run the controller on the network core, and then trouble on the application core, communicating over the IPC bus. You'd need to implement...

> > I think with the nrf53, you can run the controller on the network core, and then trouble on the application core, communicating over the IPC bus. You'd need...

I think #237 should fix using the l2cap - 4 as the default rather than 23. Wrt. set_att_mtu, it was used earlier when att mtu was explicitly set from the...

@pperanich Have you been able to test if you get the behaviour you expect now? (Can I close the issue?)

So, I tried to reproduce this looking at the wireshark trace, and if I adjust this line https://github.com/embassy-rs/trouble/blob/main/examples/nrf-sdc/src/bin/ble_bas_peripheral.rs#L35 to 251, and use nrf connect to request a large MTU, the...

It should work then I think if you implement [this trait](https://docs.rs/bt-hci/0.2.1/bt_hci/transport/trait.Transport.html).