We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bc2f9 commit 8414e45Copy full SHA for 8414e45
uno_def.c
@@ -106,4 +106,11 @@ void usart_setint(int i, BASE base)
106
usart_setc((rev%base)+'0');
107
rev/=base;
108
}
109
+}
110
+void usart_win_cursor(bool on)
111
+{
112
+ if(on)
113
+ usart_setstr("\e[?25h");
114
+ else
115
+ usart_setstr("\e[?25l");
116
uno_def.h
@@ -170,4 +170,7 @@ void usart_setc_ifready(char c);
170
void usart_setstr(char *str);
171
void usart_setint(int i, BASE base);
172
173
+
174
+void usart_win_cursor(bool onoff);
175
176
#endif /* UNO_DEF_H_ */
0 commit comments