#include "project/commands.h" // Generic helper functions
#ifdef CFG_TFTLCD
- #include "drivers/lcd/tft/touchscreen.h"
+ #include "drivers/displays/tft/touchscreen.h"
/**************************************************************************/
/*!
if (error == TS_ERROR_NONE)
{
// A valid touch event occurred ... parse data
- printf("%d, %d%s",(int)data.xlcd, (int)data.ylcd, CFG_PRINTF_NEWLINE);
+ printf("%d,%d%s",(int)data.xlcd, (int)data.ylcd, CFG_PRINTF_NEWLINE);
}
else
{
// Display error code
- printf("%d %s", (int)error, CFG_PRINTF_NEWLINE);
+ printf("%d%s", (int)error, CFG_PRINTF_NEWLINE);
}
return;