pesaply / smslib

Automatically exported from code.google.com/p/smslib
0 stars 0 forks source link

MultiTech Modem Memory Locations #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Changed ATHandlerMultiTech.java  SR is not valid location that way that it
was used.  It should also be in the configuration file. 

-------------

package org.smslib.athandlers;

import java.io.IOException;
import org.smslib.gateway.ModemGateway;

public class ATHandler_MultiTech extends ATHandler
{
    public ATHandler_MultiTech(ModemGateway gateway)
    {
        super(gateway);

        terminators[10] = "\\+CRING:\\s*VOICE\\s";
        storageLocations = "SM";
        //storageLocations = "SMSR";
    }

    public void init() throws Exception
    {
        super.init();
        modemDriver.write("AT+WIND=0\r");
    }
}

Original issue reported on code.google.com by nxn...@gmail.com on 29 Nov 2007 at 6:41

GoogleCodeExporter commented 9 years ago
Thanks.

Can you tell me to which Multitech model are you referring to?
Or is this "SR" location invalid for all MT modems?

Original comment by T.Delenikas on 29 Nov 2007 at 8:06

GoogleCodeExporter commented 9 years ago

Original comment by T.Delenikas on 29 Nov 2007 at 8:06

GoogleCodeExporter commented 9 years ago
I am referring to MTCBA-G-EN-F2 specifically.  As for the others, I am not 
sure.  I
would  guess that it would be the same on the MTCBA-G-EN-F4 as well.  I will 
ask for
a sample of the MTCBA-E-EN-F1 EDGE modem as well to verify.

Original comment by nxn...@gmail.com on 29 Nov 2007 at 11:53

GoogleCodeExporter commented 9 years ago
Scheduled for RC2.

Original comment by T.Delenikas on 30 Nov 2007 at 6:35

GoogleCodeExporter commented 9 years ago

Original comment by T.Delenikas on 5 Dec 2007 at 7:49