ALCAM Strange Error

Strange Error
At least to me it is…

If I send: C F>image format as:


string cmd = "C F>B";    //String for LCD display
SendCommand(cmd);   //Set image format to BMAP.
Thread.Sleep(500);       //Wait a bit...
tryRead();   //Read the response from ALCAM. Display (OK or ERROR)

Reply Received: !13 ( From tryRead() )
Which is: 13 ERROR_BMB_SIZE_TOO_LARGE

At the beginning of my application I am sending these two commands to set initial state:


cmd = "C F>B";
SendCommand(cmd);   //Set image format to BMAP.
Thread.Sleep(500);
tryRead();

cmd = "C S>1";
SendCommand(cmd); //Set image size to 320x240
Thread.Sleep(500);
tryRead();

Lets just say I am a bit lost as to why I would receive this error.

BMP come too large to fit in memory. Use a smaller size for BMP.