Foxyloxy has quit [Read error: Connection reset by peer]
Foxyloxy has joined #rust-embedded
Foxyloxy has quit [Read error: Connection reset by peer]
starblue has quit [Ping timeout: 260 seconds]
starblue has joined #rust-embedded
limpkin has quit [*.net *.split]
Ekho has quit [*.net *.split]
ni has quit [*.net *.split]
seer has quit [*.net *.split]
ni has joined #rust-embedded
limpkin has joined #rust-embedded
seer has joined #rust-embedded
Ekho has joined #rust-embedded
stephe has quit [*.net *.split]
Darius has quit [*.net *.split]
stephe has joined #rust-embedded
Darius has joined #rust-embedded
<re_irc>
< (@fragadaleta:matrix.org)> hi all, I have to port a software-based network module (I implemented in Rust) to a dedicated device. I am looking for candidates. If interested DM me. Paid project.
<re_irc>
< (@fragadaleta:matrix.org)> * communication module for robots
ni has quit [Quit: WeeChat 3.0]
ni has joined #rust-embedded
causal has quit [Quit: WeeChat 3.7.1]
conplan has left #rust-embedded [Leaving.]
<re_irc>
< (@yatekii:matrix.org)> pixelhamster: those are not weird but the default/normal way to flash/debig embedded devices. only with the rise of hobbyist embedded development, everybody expects chips to be flashed via USB from all the devkits containing a debug probe/bootloader :)
<re_irc>
cargo-embed uses probe-rs to talk to debug probes. for bootloader flashing there is a plethora of fine tools :)
dc740 has joined #rust-embedded
Foxyloxy has joined #rust-embedded
Foxyloxy has quit [Read error: Connection reset by peer]
<re_irc>
< (@richarddodd:matrix.org)> pixelhamster: I highly recommend getting familiar with SWD (serial wire debug). It's a really nice and convenient way to flash and communicate with your chip, that only requires 2 pins - no USB required! Lots of devices implement the debugger side, for example many nordic dev boards, which you can then use from their USB.
Darius has quit [Ping timeout: 255 seconds]
Darius has joined #rust-embedded
Darius has quit [Client Quit]
Darius has joined #rust-embedded
conplan has joined #rust-embedded
emerent has quit [Ping timeout: 252 seconds]
emerent has joined #rust-embedded
dc740 has quit [Remote host closed the connection]
<re_irc>
< (@dkhayes117:matrix.org)> Does anyone refer to a micro-architecture crate has a MAC, like the PACs are? I'm writing about it, and calling it a MAC seems weird.
<re_irc>
< (@dkhayes117:matrix.org)> No abbreviation, so I'll take that as a no, lol
<re_irc>
< (@jamesmunns:beeper.com)> Yeah, AFAIK we always just called them "arch crates" or something like that
<re_irc>
< (@jamesmunns:beeper.com)> the "PAC" name only came about a year or two after we started iterating on things, to better distinguish from hal crates. the old habit was something like:
<re_irc>
- nrf52 (the pac)
<re_irc>
- nrf52-hal
<re_irc>
< (@jamesmunns:beeper.com)> this confused everyone because they always picked the shorter name lol
<re_irc>
< (@jamesmunns:beeper.com)> so we "added" the "-pac" suffix to make it a little more clear
<re_irc>
< (@dkhayes117:matrix.org)> That makes sense, thanks!