A_Clear_Memory method

void A_Clear_Memory()

A_Clear_Memory() PURPOSE Clear Flash memory. SYNTAX void A_Clear_Memory(void); EXAMPLE A_Clear_Memory(); REMARK The A_Clear_Memory function will clear all the graphics and soft fonts which stored in the printers flash memory. Normally this function is sent before the A_Print_Out(). Otherwise the graphics and fonts will be accumulated, and cause memory overflow. When "memory full" occurs, the printer will erase the first-in graphics or fonts. To avoid memory full and save processing time, you may send this function before the A_Print_Out().

Implementation

void A_Clear_Memory() {
  return _A_Clear_Memory();
}