slight changes to header file for our program

Fork of wave_player by Steve Ravet

Files at this revision

API Documentation at this revision

Comitter:
spoda
Date:
Tue Nov 01 02:10:10 2016 +0000
Parent:
1:acc3e18e77ad
Commit message:
Changed header guard

Changed in this revision

wave_player.h Show annotated file Show diff for this revision Revisions of this file
--- a/wave_player.h	Tue Jan 18 03:57:27 2011 +0000
+++ b/wave_player.h	Tue Nov 01 02:10:10 2016 +0000
@@ -1,4 +1,5 @@
-#include <mbed.h>
+#ifndef MBED_H_
+#define MBED_H_
 
 typedef struct uFMT_STRUCT {
   short comp_code;
@@ -68,5 +69,5 @@
 volatile short DAC_rptr;
 short DAC_on;
 };
+ #endif
 
-