| 1234567891011121314151617181920212223242526272829303132333435 | 
							- /*
 
-  * decls.h
 
-  * 
 
-  * Pull in all other header files in an orderly fashion. Source files include
 
-  * only this header, and only once.
 
-  * 
 
-  * Written & released by Keir Fraser <keir.xen@gmail.com>
 
-  * 
 
-  * This is free and unencumbered software released into the public domain.
 
-  * See the file COPYING for more details, or visit <http://unlicense.org>.
 
-  */
 
- #include <stdint.h>
 
- #include <stdarg.h>
 
- #include <stddef.h>
 
- #include "util.h"
 
- #include "stm32f10x_regs.h"
 
- #include "stm32f10x.h"
 
- #include "intrinsics.h"
 
- #include "time.h"
 
- #include "timer.h"
 
- #include "usb.h"
 
- #include "cdc_acm_protocol.h"
 
- /*
 
-  * Local variables:
 
-  * mode: C
 
-  * c-file-style: "Linux"
 
-  * c-basic-offset: 4
 
-  * tab-width: 4
 
-  * indent-tabs-mode: nil
 
-  * End:
 
-  */
 
 
  |