Demo of low res colour vga video for stm32f3 discovery board

Dependencies:   STM32F3-Discovery-minimal

Fork of Space_Invaders_Demo by Martin Johnson

Revision:
14:3035b3271395
Parent:
12:f819427d0bec
--- a/video.h	Thu May 31 03:27:48 2018 +0000
+++ b/video.h	Thu May 31 03:38:14 2018 +0000
@@ -27,16 +27,14 @@
 
 #include "gdptypes.h"
 
-#define	VID_HSIZE		160 //261		// Horizontal resolution (in bytes)
-#define	VID_VSIZE		120		// Vertical resolution (in lines)
+#define	VID_HSIZE		196//150 //261		// Horizontal resolution (in bytes)
+#define	VID_VSIZE		160//240		// Vertical resolution (in lines)
+
+#define HTOTAL	(VID_HSIZE+5)
 
 #define	VID_PIXELS_X	(VID_HSIZE)
 #define	VID_PIXELS_Y	VID_VSIZE
 
-/*
-#define	VID_PIXELS_XR	(VID_PIXELS_X + 16)
-#define	VID_HSIZE_R		(VID_HSIZE + 2)
-*/
 //	Function definitions
 
 void	vidInit(void);