• undefined identifier error(c202)
    i write this code for LDR connected with the AT89s52 through the ADC MCP3208. i write the below code. #include<at89s52.h> #include<stdio.h> sbit CLK=P1^2; sbit MISO=P1^3; sbit MOSI=P1^4;...
  • error C202 undefined identifier
    Hi, I defined, Uint16 TCounts[10]; in globals.h and tried to use it in cc01drv.c where #include "globals.h" is there. but during build the error msg coming up is, "C202 undefined identifier...
  • error C202: 'osThreadId_t': undefined identifier
    when trying to execute the below code, osThreadId_t tid1; tid1 = osThreadNew(job1, NULL, NULL); // Create a new thread I am facing the error "main.c(24): error C202: 'osThreadId_t': undefined...
  • how to fix error C202: 'PINC': undefined identifier
    i have this code for gps/gsm based tracking system. when i start building target it gives this error. help me to fix this error, thank you, my code is this: //GPS Vehicle tracker #define F_CPU...
  • In keil uVision 5 getting error c202 undefined identifier ...
    #include <reg51.h> #define LED P2 sbit sw = P1^0; void delay(unsigned int ); main() { sw=1; LED =1; while(1) { if(sw==0) { LED =0; delay(10); LED =1; } } } void delay(unsigned int n) { TMOD...