summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--irmp.exebin24064 -> 22528 bytes
-rw-r--r--irmpsystem.h10
-rw-r--r--irsnd.exebin14336 -> 11264 bytes
3 files changed, 8 insertions, 2 deletions
diff --git a/irmp.exe b/irmp.exe
index bf6c1d3..ba79840 100644
--- a/irmp.exe
+++ b/irmp.exe
Binary files differ
diff --git a/irmpsystem.h b/irmpsystem.h
index 395772b..1e2e4df 100644
--- a/irmpsystem.h
+++ b/irmpsystem.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2009-2012 Frank Meyer - frank(at)fli4l.de
*
- * $Id: irmpsystem.h,v 1.5 2012/05/23 12:26:26 fm Exp $
+ * $Id: irmpsystem.h,v 1.6 2012/05/23 14:02:45 fm Exp $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -49,12 +49,18 @@
#ifdef UNIX_OR_WINDOWS // Analyze on Unix/Linux or Windows
# include <stdio.h>
# include <stdlib.h>
-# include <stdint.h>
# define F_CPU 8000000L
# define ANALYZE
# define DEBUG
+# ifdef unix
+# include <stdint.h>
+# else
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+# endif
#endif
+
#if defined(ATMEL_AVR)
# include <stdint.h>
# include <stdio.h>
diff --git a/irsnd.exe b/irsnd.exe
index 8342b0b..9821dc2 100644
--- a/irsnd.exe
+++ b/irsnd.exe
Binary files differ