• Is there a function for string rotate ?
    "This is a string. " Rotate to : "his is a string. T" Rotate to : "is is a string. Th" .... I use it for LCD Display for Scroll.
  • 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...
  • C code for rotation of stepper motor
    hello, Can anyone please give me C code to rotate a stepper motor by 180 degrees and stop using 8051? Here stepper motor has a step angle of 1.8 degrees. I will be very grateful to anyone who can help...
  • 8051 c program for rotating through carry
    Sir, May i know the 8051 c program for the instruction rlc a (rotate accumulator left through carry) Is there any operator for this insruction like shift operator thanks & regards Rijo
  • 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...