https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: fc5fe8dd84bb342207f75fad61fd28ffab80fb8d authored by hudson@kremvax on 08 July 2009, 02:37:24 UTC
Zebra adjustments to avoid writing over the recording circle
Tip revision: fc5fe8d
string-dump
#!/usr/bin/perl
use warnings;
use strict;

while(<>)
{
	my ($val) = /:\s*([0-9A-Fa-f]+)\s*/ or next;
	$val = hex $val;
	while( $val )
	{
		print chr( $val & 0xFF );
		$val >>= 8;
	}
}

print "\n";
back to top