ruben
08-31-2004, 05:15 PM
Is there any known issue with BREWPerlIF.dll and LG 7000 phone? My application installation script, does all the necessary file copies and then at the end it calls follwing segment of the Perl script. It works fine for other phones like Motorola V710. However in LG 7000, I get the message "Resetting Device", and then script window hangs. I need to use task manager to kill it and "OEMLayerdll". MY phone reboots correctly as expected.
printf "Resetting Device\n";
$Result = BREWPerlIF::ResetDevice();
if( $Result == 0 )
{
printf "Device reset successfully\n";
}
else
{
printf "Could not reset the device\n";
}
printf "Disconnecting from device\n";
if( BREWPerlIF::ReleaseDevice() )
{
print "Disconnect from the device successful\n";
}
else
{
die "Could not disconnect from the device\n";
}
is this known issue with LG 7000?
printf "Resetting Device\n";
$Result = BREWPerlIF::ResetDevice();
if( $Result == 0 )
{
printf "Device reset successfully\n";
}
else
{
printf "Could not reset the device\n";
}
printf "Disconnecting from device\n";
if( BREWPerlIF::ReleaseDevice() )
{
print "Disconnect from the device successful\n";
}
else
{
die "Could not disconnect from the device\n";
}
is this known issue with LG 7000?