Changeset 150 for trunk

Show
Ignore:
Timestamp:
06/02/07 07:10:58 (18 months ago)
Author:
zany
Message:

Motorola SLVR L2 fix

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r147 r150  
     12007-06-02  Christian W. Zuckschwerdt  <zany@triq.net> 
     2 
     3        * Motorola SLVR L2 cobex fix by Andrey Rahmatullin 
     4 
    152007-06-01  Christian W. Zuckschwerdt  <zany@triq.net> 
    26 
  • trunk/bfb/bfb_io.c

    r126 r150  
    409409                goto ericsson; 
    410410        } 
    411         if(strncasecmp("MOTOROLA", rspbuf, 8) == 0) { 
     411        if(strncasecmp("MOTOROLA", rspbuf, 8) == 0 || /* is this needed? */ 
     412           strstr(rspbuf, "Motorola")) { 
    412413                DEBUG(1, "Motorola detected\n"); 
    413414                goto motorola; 
     
    487488                goto err; 
    488489        } 
    489         if(strcasecmp("CONNECT", rspbuf) != 0)  { 
     490        if(strcasecmp("CONNECT", rspbuf) != 0 || /* is this needed? */ 
     491           strcasecmp("OK", rspbuf) != 0)       { 
    490492                DEBUG(1, "Error doing AT+MODE=22 (%s)\n", rspbuf); 
    491493                goto err;