Linking new added h and c files to the project
I've created h and c files in Inc and Src folders, I get the following error: "undefined reference to `ILI9341_DrawPixel'
*.h file:
void ILI9341_DrawPixel(uint16_t x,uint16_t y,uint16_t color);*.c file:
while (x >= y)
{
ILI9341_DrawPixel(X + x, Y + y, color);
ILI9341_DrawPixel(X + y, Y + x, color);
ILI9341_DrawPixel(X - y, Y + x, color);
ILI9341_DrawPixel(X - x, Y + y, color);
.......
undefined reference to `ILI9341_DrawPixel'
Best regards
