X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/9d18e10afb2439a6a9ba6978a799259746a837b7..11d3519339b45996592aa5b43669c9cd8cc495b1:/project/commands/drawing/cmd_bmp.c?ds=sidebyside diff --git a/project/commands/drawing/cmd_bmp.c b/project/commands/drawing/cmd_bmp.c index 4ae5423..291b665 100644 --- a/project/commands/drawing/cmd_bmp.c +++ b/project/commands/drawing/cmd_bmp.c @@ -43,8 +43,9 @@ #include "project/commands.h" // Generic helper functions #if defined CFG_TFTLCD && defined CFG_SDCARD - #include "drivers/lcd/tft/lcd.h" - #include "drivers/lcd/tft/drawing.h" + #include "drivers/displays/tft/lcd.h" + #include "drivers/displays/tft/drawing.h" + #include "drivers/displays/tft/bmp.h" /**************************************************************************/ /*! @@ -63,7 +64,7 @@ void cmd_bmp(uint8_t argc, char **argv) // Render image bmp_error_t error; - error = drawBitmapImage(x, y, filename); + error = bmpDrawBitmap(x, y, filename); switch (error) {