Mats Engstrom
Mats Engstrom
Unfortunately not. After restart it works for many hours until it just suddenly bugs out. (Which happened twice on this design) I can't recall it ever happened in another design,...
I guess that 99% of all usage cases would to fill with space characters with a background color - i.e just clear part of the screen for printing/drawing something new....
Nice! I guess netter late than never - although I thought the opposite in highschool where I usually rather skipped an entire class rather than coming in like 10 minutes...
So is there any solution or workaround for this issue? Or is mouse-support on OSX borked until further notice?
And maybe also what is causing this messy formatting for me... ```dart class x { static void y() { http .post( Uri.parse('https://'), body: jsonEncode({}), ) .then((value) { print("ok"); }).catchError((error) {...
Like this: https://github.com/cnlohr/ch32v003fun/wiki/Installation#macos So basically: 1) Install the toolchain and prerequisites as in the wiki 2) `cd` to the folder with minichlink 3) Type `make` and the executable will be...
Isn't it just as simple as making the strings `const` and they will end up in the _text_ segment instead of _data_ ? `char foo1[]="ABCDEFGHIJABCD";` vs `const char foo2[]="ABCDEFGHIJABCD";`
The reason for AVR having to do special things to get strings into the flash is because it's a Harvard architecture where the data and code memories are totally separated....
I have the same question about what everybody are using their Raspberry Pi's for. Except for a "digital signage" (A TV that displays information) I've never had any use for...
consts/defines are usually nice - as long as they don't cause confusion when trying to make heads or tails of they code you're reading and at the same time looking...