Added support for Black Magic Probe Mini V2.0e.

All BMPM2 prototypes after revision a have their LED0 and LED2 inverted.
Because of that we have bumped the hardware revision to swap the LEDs in
software. This is easier than messing up the routing of the LEDs.
This commit is contained in:
Piotr Esden-Tempski 2016-04-06 19:23:17 -07:00
parent f2650df731
commit 8e8a53ef12
1 changed files with 2 additions and 2 deletions

View File

@ -93,9 +93,9 @@
#define LED_0 GPIO2 #define LED_0 GPIO2
#define LED_1 GPIO10 #define LED_1 GPIO10
#define LED_2 GPIO11 #define LED_2 GPIO11
#define LED_UART LED_2 #define LED_UART (platform_hwversion() < 2 ? LED_2 : LED_0)
#define LED_IDLE_RUN LED_1 #define LED_IDLE_RUN LED_1
#define LED_ERROR LED_0 #define LED_ERROR (platform_hwversion() < 2 ? LED_0 : LED_2)
#define TMS_SET_MODE() \ #define TMS_SET_MODE() \
gpio_set_mode(TMS_PORT, GPIO_MODE_OUTPUT_50_MHZ, \ gpio_set_mode(TMS_PORT, GPIO_MODE_OUTPUT_50_MHZ, \