NAME

Device::BusPirate::Chip::AVR_HVSP - deprecated

DESCRIPTION

This module has moved. it now lives at Device::Chip::AVR_HVSP because it now implements the Device::Chip interface.

To use it, replace

my $pirate = Device::BusPirate->new( @pirate_args );
my $chip = $pirate->mount_chip( "AVR_HVSP" )->get;

with

my $chip = Device::Chip::AVR_HVSP->new;
$chip->connect(
   Device::Chip::Adapter::BusPirate->new( @pirate_args )
)->get;

Then proceed to use the $chip device as before.