diff harelet.c @ 15:ef57eb9ec02b

Automated Vimcurial commmit
author VilyaemKenyaz
date Tue, 12 Sep 2023 08:41:30 -0400
parents 8b5ff478ec66
children 43dcb67b173d
line wrap: on
line diff
--- a/harelet.c	Tue Sep 12 08:35:17 2023 -0400
+++ b/harelet.c	Tue Sep 12 08:41:30 2023 -0400
@@ -109,7 +109,7 @@
 		//Meat of instructions
 		for(int i = 0;i != numpoints;i++){
 			//Compose
-			char instruction[32];
+			char instruction[64];
 			strcat(instruction,"G0 X ");
 			//Convert X to string
 			sprintf(buffer,"%d",points[i].X);
@@ -141,6 +141,7 @@
 
 	puts("Finished Compiling GCODE");
 	getchar();
+	scanf("Check above for problems");
 
 }