Some examples for the STM32F4-Disco board

This commit is contained in:
cmcmanis
2014-02-07 22:31:27 -08:00
committed by Piotr Esden-Tempski
parent 2583cc54cc
commit e5585dd07d
23 changed files with 1716 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
* This include file describes the functions exported by clock.c
*/
#ifndef __CLOCK_H
#define __CLOCK_H
/*
* Definitions for functions being abstracted out
*/
void msleep(uint32_t);
uint32_t mtime(void);
void clock_setup(void);
#endif /* generic header protector */