

congrats! glad to hear it :)
i’m back


congrats! glad to hear it :)


finally I’ve made a difference


tell them what I said


it shouldnt, it’s natural and healthy


if it helps I think you’re a genuinely kind person and I enjoy spending time with you. You have value and belong here


I think I’ve finally turned a corner with embedded Rust, I tricked a Pi Pico 2 into playing NSF files!
I’m scared of how many thousands of lines of code the NES emulator I had to write was, and for a while it felt like it was never going to be fast enough to run on a 150MHz processor, but some optimization that was within run-to-run variance on the benchmarks on my laptop must have really favoured the pico 2, and now there’s no dropouts!
Lessons learned:
embedded_alloc which gives you access to Rc, Arc, Vec, etc by actually letting you define a heap. I highly recommend this although remember that when a Vec needs to grow it needs 3x it’s previous size in memory, because it creates a new Vec with 2x previous capacity, copies from the old Vec, then drops it.rp-hal.

it’s shocking to me how much simpler analog audio processing really is than DSP, I’m sure if you’re wanting a good sound there’s still a lot of math in analog but “just throw a cap in there and see how it sounds” is fascinating to me for silly little projects I want to do


sick I’ve been meaning to learn about how analog filters are built as I figured it would be a pretty simple circuit. I’m gonna have to breadboard about this


I saw a guy turn a square wave into a sawtooth wave just by adding a cap to the output line yesterday in a video. it made sense in retrospect but I just never thought about it (and yes it also coloured the sound a lot which was also surprising. do caps have frequency responses??)


but they smell much worse when you open them


I gotta be honest, i have hundreds of hours in factorio and I personally just like it way better without the tower defense stuff and play on peaceful. I just think it’s more fun that way, the constant interruptions are stressful.


longer than War and Peace.
no way… I think I want a hard copy now of it and a few other ao3 things just so I can see how thick they are. I guess when something’s interesting it doesn’t matter how many pages it is


this tbh I’m in a situation where I hear an echo I stop talking too


TOKYO JUNGLE
i recommend going in as blind as possible, you get to play as cute animals


I think you are too (supportive)
not sure if full-size pi has this and if you’re talking about full size or the microcontrollers or not but the rp2350 has an HSTX interface which is DVI compatible (and somehow this means you can connect it up via HDMI). I think you’d need a rp2350 board that breaks out that peripheral though (not a Pico 2)
I haven’t used it but I have had success with a pico 2 and using SPI for display transmission, a bunch of displays do support it if you need to save pins but it is of course slower. I had to isolate the MOSI wire and make it shorter to get it to 75MHz without glitching (I don’t think it actually runs at that speed but that’s the speed I set the SPI peri to) and it results in ~20-25ms to stream out a framebuffer using DMA (but that core is competing with a tragically synchronous sdmmc library)