Demo of low res colour vga video for stm32f3 discovery board

Dependencies:   STM32F3-Discovery-minimal

Fork of Space_Invaders_Demo by Martin Johnson

Committer:
MartinJohnson
Date:
Wed Apr 03 22:05:56 2019 +0000
Revision:
17:833f1b69e11d
Parent:
3:93e488fbb8a2
update library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MartinJohnson 0:404dae88af71 1 /***************************************************************************
MartinJohnson 0:404dae88af71 2 * STM32 VGA demo
MartinJohnson 0:404dae88af71 3 * Copyright (C) 2012 Artekit Italy
MartinJohnson 0:404dae88af71 4 * http://www.artekit.eu
MartinJohnson 0:404dae88af71 5 * Written by Ruben H. Meleca
MartinJohnson 0:404dae88af71 6
MartinJohnson 0:404dae88af71 7 ### sys.h
MartinJohnson 0:404dae88af71 8
MartinJohnson 0:404dae88af71 9 # This program is free software; you can redistribute it and/or modify
MartinJohnson 0:404dae88af71 10 # it under the terms of the GNU General Public License as published by
MartinJohnson 0:404dae88af71 11 # the Free Software Foundation; either version 2 of the License, or
MartinJohnson 0:404dae88af71 12 # (at your option) any later version.
MartinJohnson 0:404dae88af71 13 #
MartinJohnson 0:404dae88af71 14 # This program is distributed in the hope that it will be useful,
MartinJohnson 0:404dae88af71 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
MartinJohnson 0:404dae88af71 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
MartinJohnson 0:404dae88af71 17 # GNU General Public License for more details.
MartinJohnson 0:404dae88af71 18 #
MartinJohnson 0:404dae88af71 19 # You should have received a copy of the GNU General Public License
MartinJohnson 0:404dae88af71 20 # along with this program; if not, write to the Free Software
MartinJohnson 0:404dae88af71 21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
MartinJohnson 0:404dae88af71 22
MartinJohnson 3:93e488fbb8a2 23 ***************************************************************************/
MartinJohnson 3:93e488fbb8a2 24 #ifndef __SYS_H
MartinJohnson 3:93e488fbb8a2 25 #define __SYS_H
MartinJohnson 3:93e488fbb8a2 26
MartinJohnson 3:93e488fbb8a2 27 #include "gdptypes.h"
MartinJohnson 3:93e488fbb8a2 28
MartinJohnson 3:93e488fbb8a2 29 // Function definitions
MartinJohnson 3:93e488fbb8a2 30
MartinJohnson 3:93e488fbb8a2 31 u8 sysInitSystemTimer(void);
MartinJohnson 0:404dae88af71 32 void sysDelayMs(u32 dly);
MartinJohnson 3:93e488fbb8a2 33 void MemsConfig(void);
MartinJohnson 3:93e488fbb8a2 34 void ReadAccelerometer(int16_t * data);
MartinJohnson 3:93e488fbb8a2 35
MartinJohnson 0:404dae88af71 36 #endif // __SYS_H
MartinJohnson 0:404dae88af71 37