mcurses icon indicating copy to clipboard operation
mcurses copied to clipboard

Results 7 mcurses issues
Sort by recently updated
recently updated
newest added

I've just discovered your library, wish I had found it years ago. I'm so happy it exists. One problem that I've been getting though is on putty. Using your examples,...

``` static uint_fast8_t mcurses_phyio_init (void) { return 0; } ``` ... ``` uint_fast8_t initscr (void) { uint_fast8_t rtc; if (mcurses_phyio_init ()) { mcurses_puts_P (SEQ_LOAD_G1); // load graphic charset into G1...

Would you mind re-licensing the code with MIT license? I'd like to build a project using FreeRTOS and mcurses, but GPL (and even L-GPL) is a often a problem for...

Hello again! this is a pull request based on the issue #7 https://github.com/ChrisMicro/mcurses/issues/7#issue-830875697 just to make you life easier :)

Hello! First of all thanks for making this port to arduino! I'm using in my project that is based on avr now. I had a problem that when I was...

On RP2040 (Arduino), compiling fails due to a function-pointer type mismatch in mcurses.c. The file declares FunctionPointer_putchar as void (*)(uint_fast8_t), but the public API (mcurses.h) and typical Arduino callbacks use...