marshfolx
marshfolx
``` File "C:\Users\chris\mambaforge\lib\site-packages\webpc\helper.py", line 30, in HOME_PATH = environ['HOME'] File "C:\Users\chris\mambaforge\lib\os.py", line 680, in __getitem__ raise KeyError(key) from None KeyError: 'HOME' ``` Because windows users have no HOME. Use **pathlib**...
 SDCC related defines, like __SDCC and __SDCC_mcs51, were added somewhere which causes lint.h is useless. A simple workaround is undef __SDCC_mcs51 before including lint.h, then re-define it, like: ```c...
The three resisters did bother me a bit. Luckily I made it finally. I'm actually a newbie, and I even soldered a capacitor standing on the board. Anyway, thanks for...
I'm using freertos, and I have a task listening serial messages. When the rx buffer is empty, I want the task to be blocked, or "sleep", and a rx callback...
I'm using freertos, and I have a task listening serial messages. When the rx buffer is empty, I want the task to be blocked, or "sleep", and a rx callback...
Add compile definition U8G2_U8G_SDL_MULTIPLE to adjust SDL window size and pixel size. The default value is: ```c int u8g_sdl_multiple = 3; ``` When the value is set to 6, the...