TheLegace

Untitled

Apr 13th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. void exti0_isr(void)
  2. {
  3.    
  4.     //Clockwise
  5.     exti_reset_request(EXTI0);
  6.     if(gpio_get(GPIOA, GPIO4))
  7.         encoder.direction=CW;
  8.     else
  9.         encoder.direction=CCW;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment