added conversion to binary form
[svn42.git] / rf433rcv / pc / sample2data.pl
diff --git a/rf433rcv/pc/sample2data.pl b/rf433rcv/pc/sample2data.pl
new file mode 100755 (executable)
index 0000000..57afafe
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/perl
+use strict;
+my @input= split //,<>;
+
+my $zero=0;
+my $one=0;
+my $last=0;
+my $timebase;
+for my $current (@input)
+{
+  if (($current != $last) and ($current == 1) )
+  {
+    print (($zero>$one)?"0":"1") if $one; #skip first=sync
+    $timebase = (($zero>$one)?$one:$zero);
+    #print "$zero,$one\n";
+    $zero=0;
+    $one=0;
+  }
+  if ($current)
+  {
+    $one++ 
+  } else { 
+    $zero++ 
+  }
+  $last=$current;
+}
+#print "\n";
+warn "Base $timebase\n";