stuff
authorBernhard Tittelbach <xro@realraum.at>
Tue, 8 Oct 2013 22:26:32 +0000 (22:26 +0000)
committerBernhard Tittelbach <xro@realraum.at>
Tue, 8 Oct 2013 22:26:32 +0000 (22:26 +0000)
rf433rcv/pc/data2sample.pl
rf433rcv/pc/plot.py
rf433rcv/pc/uncompress.c
rf433rcv/teensy/Makefile

index 2690012..20ae460 100755 (executable)
@@ -6,7 +6,6 @@ my @input= split //,<>;
 
 print 1 x $base;
 print 0 x (31 * $base);
-
 for my $current (@input)
 {
   if ($current)
@@ -18,3 +17,4 @@ for my $current (@input)
     print 0 x (3*$base);
   }
 }
+
index 74553f6..79d19b9 100755 (executable)
@@ -4,7 +4,7 @@ import fileinput
 import numpy
 import pylab
 for datastr in fileinput.input():
-  data=numpy.array(list(datastr))
+  data=numpy.array(map(int,datastr))
   pylab.plot(range(len(datastr)),data)
   pylab.hold(True)
   pylab.axis([0, len(datastr),-0.5, 3.5])
index 14d20b8..1ae88ad 100644 (file)
@@ -2,7 +2,8 @@
 #include <stdint.h>
 #include <stdio.h>
 
-#define MAX_RAM 502
+//#define MAX_RAM 502
+#define MAX_RAM 1004
 
 void main()
 {
index df03245..ee652f7 100644 (file)
@@ -444,7 +444,7 @@ gccversion :
 # Program the device.  
 program: $(TARGET).hex $(TARGET).eep
        ../pc/reset || true
-       ~/teensy_loader_cli/teensy_loader_cli -mmcu=atmega32u4 -w $(TARGET).hex
+       ~/realraum/teensy/teensy_loader_cli/teensy_loader_cli -mmcu=atmega32u4 -w $(TARGET).hex
 
 
 # Generate avr-gdb config/init file which does the following: