PDA

View Full Version : BREWPerlIF and LG7000: Tools 3.0


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?

lightning
03-15-2007, 09:28 AM
Hi,
I am trying to load some files to a samsung brew 3x device. however I get the following error-

could not locate required BREW directories on the specified device. please verify the specified BREW version. could not connect to the device on specified port com15

As you are successfully able to copy file to your device, could you kindly share the code to perform file copy from Pc to device.

Thanks