What is this language below:
//***Initialize UART for SIM900**// void Initialize_SIM900 (void) { //****Setting I/0 pins for UART****// TRISC6 = 0; // TX Pin set as output TRISC7 = 1; // RX Pin set as input // I/O pins set 17 /**Initialize SPBRG register for requ baud rate and set BRGH for fast baud SPBRG = 129; //SIM900 operates at 960 BRGH // = 1; Il for high baud_rate End of baud_rate setting. //****Enable Asynchronous serial port SYNC SPEN = 0; = 1; // Enable serial port p // Asynchronous // Asynchronous serial port enabl //**Lets prepare for transmission & r TXEN CREN = 1; = 1; // enable transmission // enable reception //_UART module up and ready for tran //**Select 8-bit mode**// TX9 = 0; RX9 // 8-bit reception sele = 0; // 8-bit reception mode //_ 8-bit mode selected_// UART module Initialized } 1/