Mike
Mike
This would be useful for embedded systems programming. I often run `arm-none-eabi-size` to verify my binary size with each build, and occasionally other utilities from binutils to verify symbol tables,...
> Don't forget that there's nothing that says you have to use a non-Rust solution for these kinds of things; any "cargo-foo" executable on your $PATH works as "cargo foo",...
I'm not sure what's being asked of me, but here are my thoughts. I'm under the impression that Gir.Core exists to provide a C# API for GObject-based libraries. It seems...
The [default interface members proposal](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-8.0/default-interface-methods#base-interface-invocations) had an example that allowed for overriding default implementations: ```C# using static System.Console; interface IA { void M() { WriteLine("IA.M"); } } interface IB :...
Just a friendly ping on this issue. Looking at the list of upcoming C# 11 features, they aren't nearly as valuable, and even somewhat superficial, compared to the ability to...
After enabling DRM debug messages with `echo 0x1f | sudo tee /sys/module/drm/parameters/debug` I can see more information in dmesg: ``` [ 256.971742] ------------[ cut here ]------------ [ 256.971749] WARNING: CPU:...
Parsing the source code and additional DRM messages, I noticed that this seems to be a clock frequency issue. So, I decided to try commenting out `core_freq=250` in config.txt, and...
I think that would be fine if it does what I think it does. Is it documented anywhere? I can't seem to find it. I'm assuming then the core clock...
I'm uncomfortable using an undocumented feature, Is `core_freq_fixed` something I can rely upon being there in the future? I can't find any reference to it anywhere. Can someone please document...
I've confirmed that setting `core_freq_fixed=1` on a CM3+ results in a core clock of 400MHz, not 250MHz. The concern with that is whether that frequency can be divided to standard...