Johan Kristell

Results 12 comments of Johan Kristell

Hi, some quick thoughts: The symptoms indicate that the receiver recognizes the Repeat command, but haven't received any complete commands yet, so that's why it looks like it received a...

Hi, I didn't find the time to finish writting a example for the Pico during the weekend. But I will try to do it this week.

Got it working! https://github.com/jkristell/rp-hal/blob/solderparty-stamp-infrared-example/boards/solderparty-rp2040-stamp/examples/ir.rs This is a really, really, really messy example right now :-). Will clean it up later and put it permanent somewhere.

Now it's cleaned up and should be able to use it as a start for your own app!

It would be interesting to look at the at the pulses of the mystery remote to see how it encodes the data. I can post another example on how to...

What protocol? Running in release mode? I got the external interrupt based version running very reliable. I have some fixes in a soon to be merged branch https://github.com/jkristell/infrared/tree/tempus-fugit you could...

> Indeed, there're HAL impls which have it, but not in the STM32 domain it seems. I was sure I used them for stm32f4xx, but maybe not. Hmm.

I don't know if it's the intention of the code, but both set, I believe, is capture on both edges.

You can read and write in multiples of "blocks" of 512 bytes with: ``` pub fn read_block(&mut self, blockaddr: u32, block: &mut [u8; 512]) -> Result; pub fn write_block(&mut self,...

I'm not sure what you mean with no implementation? And yes you call them multiple times and with the blockaddress you want to read/write. Example: https://github.com/jkristell/feather-f405/blob/master/examples/sd-usb-mass-storage.rs