• combining two Interrupts
    I want to detect positive and negative edges that are generated by a limit switch. 1. I am using P89V51RD2 . 2. I want to do two different tasks upon these edges. 3. I am making use of capture...
  • combining two Interrupts
    I want to detect positive and negative edges that are generated by a limit switch. 1. I am using P89V51RD2 . 2. I want to do two different tasks upon these edges. 3. I am making use of capture...
  • combine two hex file ?
    How can I combine two hex files as one to code memory so that the first part starts from 0x0000 and the other one from 0x8000 to 0xFFFF? I use P89C51RD+ and Keil uVision 2. Is it possible to add one hex...
  • combine two hex file ?
    How can I combine two hex files as one to code memory so that the first part starts from 0x0000 and the other one from 0x8000 to 0xFFFF? I use P89C51RD+ and Keil uVision 2. Is it possible to add one hex...
  • Sending integers over USART as ASCII characters, using HAL Libraries
    Hello Everyone; To send ASCII characters via USART I normally use Hal libraries and the function below; HAL_UART_Transmit(&huart2, (uint_t*)"Hello", 6,10); But, that one is for characters...