You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printf("Type LOCKDEVICE to enable the ICSP Inhibit feature.\r\n\r\n");
165
-
printf("WARNING: THIS PERMANENTLY DISABLES DIRECT PROGRAMMING OF THE BOARD.");
207
+
ClearTerminalScreen();
208
+
209
+
printf("Type LOCKDEVICE (plus ENTER) to enable the ICSP Inhibit feature.\r\n");
210
+
printf("\r\n");
211
+
printf("WARNING: THIS PERMANENTLY DISABLES DIRECT PROGRAMMING OF THE BOARD.\r\n");
212
+
printf("\r\n");
213
+
printf(">> ");
214
+
215
+
EnableCursor(true);
166
216
}
167
217
168
218
staticvoidPrintBootloaderRequired(void)
169
219
{
220
+
EnableCursor(false);
170
221
MoveCursor(1);
171
-
printf("NO BOOTLOADER DETECTED!\r\n\r\n");
172
-
printf("Because programming will be permanently disabled, \r\na bootloader is required to run this demo. \r\nPlease see the readme.md for more information.");
222
+
ClearTerminalScreen();
223
+
224
+
printf("NO BOOTLOADER DETECTED!\r\n");
225
+
printf("\r\n");
226
+
printf("Because programming will be permanently disabled, \r\n");
227
+
printf("a bootloader is required to run this demo. \r\n");
228
+
printf("Please see the readme.md for more information.\r\n");
173
229
}
174
230
175
231
/* The following code finds the address used by GOTO instruction programmed
0 commit comments