Ugljesa Jovanovic

Results 93 comments of Ugljesa Jovanovic

> @ionspin Thanks for adding support for sx1262. Your code panics because `SpreadingFactor::_5` is unavailable for sx127x, so I had to use something available. It seems that the bandwidth affects...

I have added bandwidth to the listen function, but I haven't added `set_bandwidth` to `RadioKind`, because as far as I can see setting just the bandwidth without affecting other modulation...

> Since we have to pass modulation params for all prepare_for_xx methods, the hard-coded spreading factor and coding rate shouldn't affect subsequent operations. So for now, we could choose params...

I've got a couple of Tiny2350 from pimoroni, got blinky to work without much trouble except that elf2uf2 would work because of hard float in the executable. ``` elf2uf2-rs ./target/thumbv8m.main-none-eabihf/debug/blinky...

I'm running into a bit of issue, I'm getting different behavior after `picotool reboot` and resetting the RP2350 (using reset button on Tiny2350, or just unplugging the Pico2). After `picotool...

I don't think this is correct: https://github.com/embassy-rs/embassy/blob/423e5d7655d038ead9ad7f5f448cabbd0b330660/embassy-rp/src/clocks.rs#L515 ![image](https://github.com/user-attachments/assets/b390f6b5-5fbe-473d-86af-0d53527ee31e) I suspect `picotool reboot` initializes ticks, and embassy-rp does not, here's my log collected through defmt-uart ``` 0.037927 INFO Defmt serial test...

I'm working on adding TRNG support, hopefully I'll have a draft this weekend.

@fatfingers23 > Hey, do you think you could expand on what you meant by `defmt-uart` if you get a chance? Looking at getting some kind of logging working for the...

This is what I'm seeing using `BinBytesRecorder` to load a ~256kb model. I presume some of it comes from bincode deserializing. ``` Before loading: Stats { allocations: 0, deallocations: 0,...