131// valid standardized LED and button definitions
132#define LED2 PB_14
133#define LED3 PC_9
134#define BUTTON2 PC_13
135
136// invalid LED definitions
137#define LED4 LED3 // duplicate
138#define LED5 PC_9 // duplicate
139#define LED6 LED6 // identity
140#define LED7 NC // NC
141
142// invalid button definitions
143#define BUTTON3 PC_13 // duplicate
144#define BUTTON4 BUTTON1 // duplicate
145#define BUTTON5 NC // NC
146#define BUTTON6 BUTTON6 // identity
147
148#endif
Important Information for this Arm website
This site uses cookies to store information on your computer.
By continuing to use our site, you consent to our cookies.
If you are not happy with the use of these cookies, please review our
Cookie Policy
to learn how they can be disabled.
By disabling cookies, some features of the site will not work.