This email includes test method for the phase 1 program. Create a new command and implement a test program given below using your functions. ========================================= - Initialize a frame buffer size of 50*20(WidthxHeight). The origin of the frame buffer is top-left and it's (0, 0) and the end of it is (49, 19). It's 2D grid array. - Fill up the frame buffer with '0's. There will be 1000 '0's in the frame buffer. You may do this using any function in string.h or using fbPutChar/fbPutString functions. - Put your and your partner's name in (10, 10). - Get a character from (15, 10)and display the character. If the character is white space get the next one which is not space. - free the frame buffer. - Show the frame buffer on the monitor. ========================================= You should use fbInit, fbPutString, fbGetChar, fbClose, fbDump in the command. fbPutChar may be used in fbPutString and that will be enough to check the fbPutChar function.