Jacob Rosenthal
Jacob Rosenthal
An embedded use case is flashing/debugging after the compile. Weve actually rewritten a lot of these in rust so they COULD be used as a library, but at the moment...
ah, timeout feels nice Fix for printer, maybe something like ``` // enqueue a test message // let mut node = UARTEDMAPoolNode::new(); // node.write(&[95, 95, 95, 95]); // let b...
Probably outside of the scope of this pr.. but any thoughts on avoiding multiple buffers by writing directly into the dmapoolnode TLDR I thin this is the old rolling your...
yeah I think that would do it for this case. Id offer, but Im not sure how that works with Maybeuninit
hrm.. not sure about the guarantees.. but this does compile ``` pub fn as_mut_slice(&mut self) -> &mut [u8] { unsafe { core::slice::from_raw_parts_mut(self.buf.as_mut_ptr() as *mut _, self.len as usize) } }...
Were seeing this with the samd boards which have a uf2 bootloader fitted as well. Cargo embed works fine. When I wipe out the bootloader and adjust memory location probe...
This seems to be working for atsamd uf2 bootloader now. ``` $ probe-run --version 0.2.5 supported defmt version: 0.2 ```
Yeah it was weird, I think `carthage build` fixes it, but I had to do that each time I profiled.
I would use this :)
I am using it, id be happy to see a reexport if that happens. On Wed, Aug 26, 2020 at 10:11 PM jjl wrote: > you already can, it's in...