11

Dependencies:   mbed N5110 Joystick

Committer:
lhyr
Date:
Fri Apr 09 06:34:15 2021 +0000
Revision:
0:283702b9a078
11

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lhyr 0:283702b9a078 1 #ifndef BREAK_H
lhyr 0:283702b9a078 2 #define BREAK_H
lhyr 0:283702b9a078 3
lhyr 0:283702b9a078 4 void buttonA_isr();
lhyr 0:283702b9a078 5 void buttonB_isr();
lhyr 0:283702b9a078 6 void buttonD_isr();
lhyr 0:283702b9a078 7 void rise_A();
lhyr 0:283702b9a078 8 void rise_B();
lhyr 0:283702b9a078 9 void rise_D();
lhyr 0:283702b9a078 10 void Tick();
lhyr 0:283702b9a078 11
lhyr 0:283702b9a078 12
lhyr 0:283702b9a078 13
lhyr 0:283702b9a078 14 extern volatile int button_a_flag;
lhyr 0:283702b9a078 15 extern volatile int button_b_flag;
lhyr 0:283702b9a078 16 extern volatile int button_d_flag;
lhyr 0:283702b9a078 17
lhyr 0:283702b9a078 18 #endif