I will come straight to the point. I have problem understanding/ using the 'vec' keyword.
I am reading a logpacket which in which values are stored in little endian hex. In my code, I have to unpack the different bytes into scalars using the unpack keyword.
Here's an example of my problem.
my @hexData1 =qw(50 65);
my $data= pack ('C*', @hexData1);
my $x=unpack("H4",$data); # At which point the Hex became a number
print $x."\n";
#my $foo=sprintf("%x", $foo);
print "$_-> " . vec("\x65\x50", $_, 1).", " for (0..15); # This works.
print "\n";
But what I want to do is use the above statement in this way below. I dont want to send a string of hex in quotes. I want to use the scalar array of hex $x. But it wont work. How do I convert my $x to a hex string. <--this is my requirement.
print "$_-> " . vec($x, $_, 1).", " for (0..15); # This doesn't work.
print "\n";
My final objective is to read the read the 3rd bit from the right of the two byte hex.
I want to use 'vec' command for that.
THanks.