https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 19af47b6a16440799369d97e111d27416e3d6ad0 authored by Trammell Hudson on 24 May 2009, 22:13:43 UTC
Onscreen meters almost work
Tip revision: 19af47b
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