aliraza786
Full Member level 4
- Joined
- Nov 10, 2009
- Messages
- 210
- Helped
- 14
- Reputation
- 28
- Reaction score
- 14
- Trophy points
- 1,298
- Location
- Lahore, Pakistan, Pakistan
- Activity points
- 2,914
i use MikroC for Pic compiler and its Graphical Librarey, the problem is that i call all functions onles time but its output comes 2 times , this is tha code
this code produce 2 outputs ... but i have called it one time only... i can understand this sir Shawon Shahryiar
code,i have called circle ,dot and line one time only but two circle ,dots and lines are printed, this is the image kindly tell me what is the problem in the code , thanks
Code:
void main()
{
Glcd_Init();
Glcd_Fill(0xFF);
Glcd_Circle_Fill(90, 30, 10, 0);
Glcd_Dot(90, 30, 2);
Glcd_H_Line(0,127, 40, 0);
Glcd_Line(0, 2, 127, 63, 0);
while(1)
}
this code produce 2 outputs ... but i have called it one time only... i can understand this sir Shawon Shahryiar
code,i have called circle ,dot and line one time only but two circle ,dots and lines are printed, this is the image kindly tell me what is the problem in the code , thanks