ChanServ changed the topic of #rust-embedded to: Welcome to the Rust Embedded IRC channel! Bridged to #rust-embedded:matrix.org and logged at https://libera.irclog.whitequark.org/rust-embedded, code of conduct at https://www.rust-lang.org/conduct.html
crabbedhaloablut has quit [Read error: Connection reset by peer]
crabbedhaloablut has joined #rust-embedded
starblue3 has quit [Ping timeout: 250 seconds]
starblue3 has joined #rust-embedded
GenTooMan has quit [Ping timeout: 260 seconds]
GenTooMan has joined #rust-embedded
<re_irc> <@sparky:matrix.possumlodge.me> error[E0220]: associated type `Bus` not found for `SPI`
<re_irc> |
<re_irc> 31 | SPI::Bus: SpiBusWrite<u8>,
<re_irc> --> src/interface.rs:31:10
<re_irc> | ^^^ associated type `Bus` not found
<re_irc> trying to update a project from embedded-hal 1.0.0-apha9 to alpha10 and getting this. not... having much luck. poked around the docs for both, nothing stands out to be as obvious as what id have to do. someone happen to know offhand?
<re_irc> <@sparky:matrix.possumlodge.me> never mind... figured it out, but looks like im blocked on some other nonsensical version mismatch for embedded-hal from some other dep... its just a rabbit hole of version incompatibilities
exark has quit [Server closed connection]
exark has joined #rust-embedded
cyrozap has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]
cyrozap has joined #rust-embedded
cyrozap has quit [Client Quit]
cyrozap has joined #rust-embedded
cyrozap has quit [Client Quit]
cyrozap has joined #rust-embedded
crabbedhaloablut has quit []
crabbedhaloablut has joined #rust-embedded
<re_irc> <@eldruin:matrix.org> you can use "embedded-hal-compat" to mix "embedded-hal" versions
starblue3 has quit [Ping timeout: 245 seconds]
starblue3 has joined #rust-embedded
IlPalazzo-ojiisa has joined #rust-embedded
<re_irc> <@vollbrecht:matrix.org> is there some sort of bug in the release page of GH - it doesn't show 1.0.0-alpha.11 under Releases. Only under the Tags you can find it
<re_irc> <@vollbrecht:matrix.org> .10 is still marked as latest
<re_irc> <@vollbrecht:matrix.org> is there some sort of bug in the release page on GH - it doesn't show 1.0.0-alpha.11 under Releases. Only under the Tags you can find it
<re_irc> <@eldruin:matrix.org> uh, forgot to make releases, thanks!
<re_irc> <@eldruin:matrix.org> done
emerent has quit [Ping timeout: 246 seconds]
emerent has joined #rust-embedded
dc740 has joined #rust-embedded
dc740 has quit [Remote host closed the connection]
dc740 has joined #rust-embedded
<re_irc> :/
<re_irc> But thanks to for managing to push out some updates to a crate I’d basically forgotten about!
<re_irc> <@dirbaio:matrix.org> haha, what?
<re_irc> <@dirbaio:matrix.org> trying to stay away from drama, creating more drama?
dc740 has quit [Remote host closed the connection]
<re_irc> <@thejpster:matrix.org> ikr? I think it’s partly because whitequark was the owner listed on crates.io and not m-labs. But anyway I’d already forked the repo and obtained publishing rights.
<re_irc> <@whitequark:matrix.org> hm?
<re_irc> <@whitequark:matrix.org> dslite2svd isn't really the upstream repo anyway, m-labs isn't an owner of the project
<re_irc> <@whitequark:matrix.org> rust-embedded-community is
<re_irc> <@dirbaio:matrix.org> ah so it's a lie, the truth is "I can't do the crates.io release because I'm not the owner"
<re_irc> <@dirbaio:matrix.org> nice
<re_irc> <@whitequark:matrix.org> guess the metadata never got updated properly
<re_irc> <@whitequark:matrix.org> I remember giving rust-embedded-community crate ownership many years back precisely because I do not care who is listed in the metadata for an utility crate, I just want it to have, well, utility to the community; similar with smoltcp
<re_irc> <@whitequark:matrix.org> and I couldn't be as involved as before due to health issues directly caused by working for Sebastien Bourdeauducq
<re_irc> <@whitequark:matrix.org> did I ever recount how I realized I have to quit? I mentioned that it would be difficult for me to work on a certain day and he insisted I assemble together some rackmount boxes (uTCA I think?) because clearly a metal box on a rack is more important than the health of your employees
<re_irc> <@whitequark:matrix.org> but yeah back to the topic, could someone with rust-embedded-community repo creation rights put up a copy of up-to-date dslite2svd there so that the crates and the repo stay under the same org?
<re_irc> <@whitequark:matrix.org> I'm not entirely sure who has the right bits in r-e-c these days
<re_irc> <@whitequark:matrix.org> oh... that's me, apparently
<re_irc> <@whitequark:matrix.org> oh nvm thejpster is already on it
<re_irc> <@whitequark:matrix.org> perfect ^_^
<re_irc> <@lambdafriend:matrix.org> Does anyone know of any HALs that have implemented ADC DMA reads in continuous mode? I’m wanting to take a peek at how it was done.
<re_irc> <@firefrommoonlight:matrix.org> This example is a bit of a mess in that it's demonstrating various features vice a coherent program, but it demos the syntax you requested
<re_irc> <@grantm11235:matrix.org> stm32f1xx-hal does, but it is unsound and the ergonomics aren't very good https://github.com/stm32-rs/stm32f1xx-hal/blob/master/examples/adc-dma-circ.rs
<re_irc> <@grantm11235:matrix.org> I have an idea for how to support it in embassy-stm32, but it isn't done yet
IlPalazzo-ojiisa has quit [Ping timeout: 240 seconds]
IlPalazzo-ojiisa has joined #rust-embedded
<re_irc> <@lambdafriend:matrix.org> Thanks everyone for the links! Off to go study them.