Bitmap.c 178 B

12345678
  1. #include "driver.h"
  2. #include "driverlib.h"
  3. void COM_Bitmap(int ncols, int nrows, int threshold, const unsigned char *buf)
  4. {
  5. DRV_draw_bitmap(ncols, nrows, threshold, buf);
  6. }