• Nibbles
    i want to copy nibble from source to destination A B 0101 1001 ; first data C D 0011 0110 ; second data i want to copy A to B, OR copy A to C, OR copy A to D OR copy B to A, OR copy B to C, OR...
  • compare voltage
    Hi, my program: EP: MOV A,ADC0H CJNZ A,#175D,EP i have problem jumping to the next subrountine when i detect 1.75V from power supply it will start to display if not it will display...
  • stm32f3 comparator
    STM32F3 Comparator hello everyone I am a beginner in STM32F3 and I found a problem with the comparator. I have no compilation error but its not working. If anyone can help me I would be grateful ...
  • comparing signed and unsigned variables
    In the following code:- char a = 0x80; unsigned char b = 0x80; if(a==0x80) printf("a==0x80\n"); if(b==0x80) printf("b==0x80\n"); The first printf isn't executed but the second is. Why is this...
  • Comparing function pointers
    // Hi, //first: create a function typedef of void(void) typedef void(*myFunctionType)(void); //second: declare some functions void vTst000(void){} void vTst001(void){} void vTst002(void)...