sevostyanov97[m] has quit [Quit: Idle timeout reached: 172800s]
GrantM11235[m] has quit [Quit: Idle timeout reached: 172800s]
crabbedhaloablut has joined #rust-embedded
vrakaslabs[m] has quit [Quit: Idle timeout reached: 172800s]
nex8192 has left #rust-embedded [Error from remote client]
nex8192 has joined #rust-embedded
emerent has quit [Ping timeout: 245 seconds]
emerent has joined #rust-embedded
nex8192 has left #rust-embedded [Error from remote client]
IlPalazzo-ojiisa has joined #rust-embedded
corecode[m] has joined #rust-embedded
<corecode[m]>
is there a way to set a cargo config for examples only? i'd like to set the target to embedded for examples, but leave dev target at host for unit testing
marmrt[m] has quit [Quit: Idle timeout reached: 172800s]
nex8192 has joined #rust-embedded
Emre[m] has quit [Quit: Idle timeout reached: 172800s]
tr09[m] has joined #rust-embedded
<tr09[m]>
<whitequark[cis]> "that will show all of the TCP..." <- It’s quite embarrassing but I was not launching the LF clock in init, so timestamp value was always 0.
<tr09[m]>
Working as expected now.
cr1901__ has joined #rust-embedded
cr1901_ has quit [Ping timeout: 246 seconds]
cr1901_ has joined #rust-embedded
cr1901__ has quit [Ping timeout: 244 seconds]
kericsson has joined #rust-embedded
BenoitLIETAER[m] has joined #rust-embedded
<BenoitLIETAER[m]>
Hello, having a rustup toolchain version issue again
<BenoitLIETAER[m]>
cargo-embed requires 1.65.0 but for some reasons, it looks the thumbv7em-none-eabihfis stuck on 1.63.0 ?
<BenoitLIETAER[m]>
not sure how to override and if/how I should use nightly here ?
<BenoitLIETAER[m]>
(this time I don't mix OS packages with a clean rustup install only, I swear 😅)
<adamgreig[m]>
are you sure that register supports small writes? maybe you need to use modify() instead of write() to keep INSTRUCTION at the same value
<adamgreig[m]>
you probably want more like unsafe { (qspi.ccr.as_ptr() as *mut u8).offset(1).write_volatile(1) };, I think you're currently writing a whole word away from what you want, but you may well not be allowed to do a single byte write, that's quite rare for mmio registers
<eZioPan[m]>
uhm, I try the code you provide, but it still jump to HardFault
<eZioPan[m]>
can confirm write all in once do well
cr1901__ is now known as cr1901
nex8192 has left #rust-embedded [Error from remote client]
IlPalazzo-ojiisa has joined #rust-embedded
meptl[m] has joined #rust-embedded
<meptl[m]>
<meptl[m]> "I'm having issues creating a USB..." <- This was because I misconfigured the clock: I had 84.kHz() instead of 84.MHz() for sysclk.
adinack[m] has quit [Quit: Idle timeout reached: 172800s]
WSalmon has quit [Read error: Connection reset by peer]
kericsson has joined #rust-embedded
WSalmon has joined #rust-embedded
<thejpster[m]>
There’s a discussion about pushing unmaintained targets down to Tier 3. This would mean no more support in rustup for fetching prebuilt libcore. This was prompted by codegen bugs in sparc64 Linux.
<Jonas[m]1>
I see that there is a Rust HAL for NRF 52840 in the nrf-rs repo. Anyone here that has some experience working with this HAL? I have not used any NRF board yet, only RP Pico 2040. NRF 52840 has interesting radio features, but as what I can see only a part of it is in the HAL yet, not so much of the Bluetooth? as of what I can see. Does the hardware have good documentation of the Bluetooth part, so that it is possible to use with Rust
<Jonas[m]1>
or are there any hidden/difficult part that requires C libraries or BLOBs?