سلام مهندس وقت بخیر
با این ارور موقع تمرین مواجهه شدم و نتونستم برطرفش کنم…
ظاهرا چیزی که میگه داخل کد رعایت شده ولی بازم این ارور رو میده
ارور :
snake.c(42): error: unexpected ';' before ')'
42 | if( gameTickCounter > gameTickCounterThreshold ){
کد فایل snake.c :
#include "snake.h"
uint8_t screen[64]=
{
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0
};
uint8_t snake[64]=
{
24,25,26,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0
};
char snakeHead= 0;
char snakeTail= 0;
char SnakeColor= RED;
char snakeLength = 3;
char snakeDirection = down;
void moveSnake (void){
my_PutS("hello");
}
void gameTick(void){
int static gameTickCounter = 0 ;
gameTickCounter++;
//اینجا ارور میده
if( gameTickCounter > gameTickCounterThreshold ){
gameTickCounter =0;
moveSnake();
}
screenRender( screen, YELLOW);
}
کد فایل snake.h :
#ifndef __ snake_h__
#define __ snake_h__
#include "stdint.h"
#include "DOTMATRIX.h"
#include "UART.h"
#define left 0 ;
#define right 1;
#define up 2;
#define down 3;
#define gameTickCounterThreshold 1000;
void gameTick(void);
void moveSnake (void);
#endif