TC35 GSM module does not respond to "AT" command

Still the same problem.

It seems that gsmSerial.available is not true.

 if(gsm_char=='t'){
      
        gsmSerial.print("AT\r");  //Send test command
        delay(5000);
      
         if (gsmSerial.available() > 0 ){
            gsm_char = gsmSerial.read();
            Serial.println(gsm_char,DEC);
          }
    }