Daniel Egger

Results 49 issues of Daniel Egger

I haven't quite figured out what triggers the erratic behaviour but for some functions I'd get something like: ``` # cargo asm --rust core::ptr::real_drop_in_place bx lr _ZN8cortex_m10peripheral3dcb43_$LT$impl$u20$cortex_m..peripheral..DCB$GT$12enable_trace17hda6f0a10537b914cE: movs r0, #1...

With the edition-2018-ification the MSRV changed to 1.31.0. Signed-off-by: Daniel Egger

In https://github.com/japaric/cargo-call-stack/blob/134f398457721ae315e78fd6b801594e7dea452a/src/thumb.rs#L123 the UDF instruction is only accepted for ARMv7-M but in reality it is (at least) also applicable to ARMv6-M. If it is not allowed it will pretty much...

The goal of the project is very laudable but I have the feeling it's falling a bit short by having one of the longest depedencies sets of all projects I've...

bug

I'm convinced that most of the slowness (especially on non-Linux systems) is coming from the fact that forking many thousand processes for the execution of the git binary is rather...

enhancement

_Taken from @therealprof in https://github.com/orf/cargo-bloat-action/issues/147#issuecomment-630423977_ The issues noted here can be seen from: https://github.com/stm32-rs/stm32f4xx-hal/pull/159#issuecomment-630418803 It doesn't quite yield the expected output though. ;) This is the human-readable output: ``` File...

As mentioned in #29 the acquisition of NXP changed a few things and the included SVD files are incredibly out of date. I'd be happy to provide some updates via...

As per RFC 6455, if the client includes a `Sec-WebSocket-Protocol` header, the server must pick one of the available protocols and send back a `Sec-WebSocket-Protocol` header with the selection made....

I'm sending a WebSocket Ping to `websocat` running as server after establishing a connection but I don't receive a Pong: Here's the text summary from wireshark: ``` 9 10.008700 127.0.0.1...

I noticed that with my misbehaving client if I just close the TCP socket on the client side, the loop in `block_on` will run at maximum speed just spinning: ```...