• Rotate through carry
    How do I implement rotate through carry (RLC A, RRC A) in C (Keil C51) ? This is useful for bit banging operations in 12 bit serial Adc's , serial EEprom's . Now I use the assembly routines as it seems...
  • Rotate through carry
    How do I implement rotate through carry (RLC A, RRC A) in C (Keil C51) ? This is useful for bit banging operations in 12 bit serial Adc's , serial EEprom's . Now I use the assembly routines as it seems...
  • Use of RRC (Rotate right through carry) in Keil
    The 8051 family of microcontrollers has a very useful assembly instruction RRC. This instruction rotates carry into the MSB of the given register, shifts that register right by 1, and carry becomes equal...
  • Use of RRC (Rotate right through carry) in Keil
    The 8051 family of microcontrollers has a very useful assembly instruction RRC. This instruction rotates carry into the MSB of the given register, shifts that register right by 1, and carry becomes equal...
  • c program for rotating stepper motor to particular angle in 8051 microcontroller
    Sir, i am using stepper motor of 2 degree step angle. I m using following c program: #include<reg51.h> void main() { while(1) { void delay (int); P1=0xCC; delay(1); P1=0x66; delay(1); P1...