https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: e5b998718734524215e9194a103d9812295f1edb authored by hudson@kremvax on 22 June 2009, 00:45:12 UTC
Move menu drawing into menu.c and fix LCD zoom bug
Tip revision: e5b9987
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