lunalikesspace.bsky.social
@lunalikesspace.bsky.social
The problem with that is that you can't do a DNS query from a regex 😔
November 23, 2025 at 3:23 PM
To add a little more detail: in usb (<= 2) 0s are encoded as a change in the values of D+ and D- while 1s are encoded as D+ and D- staying in the same state for one bit period. That's why bit stuffing is needed for 1s but not for 0s
July 8, 2025 at 9:24 PM
I'm doing my part ^-^

In the space industry even :P
May 10, 2025 at 1:00 AM
Business discord has some nice features like notification schedules and calendar integrations that ping me a minute before a meeting. I do agree on the reliability though.
March 6, 2025 at 10:28 PM
Hi Traffic Cone ^-^
November 20, 2024 at 8:12 AM
And the vendor provided startup code only correctly initialized the .data and .bss sections with 32 bit writes but not the area between the end of .bss and the top of ram where the stack starts.
November 19, 2024 at 8:52 AM
Turns out the cause was "structs with non-word-sized members on the stack of main". The ram in this mcu has ECC and to perform a <32bit write, it does a read modify write operation which can trigger hardfaults when detecting ECC errors in the read part if the memory location hasn't been initialized
November 19, 2024 at 8:52 AM
On a microcontroller, the code would sometimes crash (hardfault) somewhere in the startup path after a power cycle. The specific location seemed to be random but it would predictably happen at the same address each time when doing a soft reset.
November 19, 2024 at 8:52 AM