Dealing with AT command respond terminator(Solved)

For testing send the bytes to the serial monitor as HEX characters all on one line with

Serial.print((byte)caractere_entrant, HEX);
Serial.print(" -- ");

This will rule out the possibility of the serial monitor doing funny things when it gets a Cr or Lf.

...R