Hellen Nissan defaults are no longer valid #3143

This commit is contained in:
Andrey 2021-09-05 15:14:33 -04:00
parent e07241b635
commit d8fbd9b40f
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ void efiExtiEnablePin(const char *msg, brain_pin_e brainPin, uint32_t mode, palc
/* is this index already used? */
if (ext_used & PAL_PORT_BIT(index)) {
firmwareError(CUSTOM_ERR_PIN_ALREADY_USED_2, "%s: pin %d: exti index already used", msg, brainPin);
firmwareError(CUSTOM_ERR_PIN_ALREADY_USED_2, "%s: pin %d: exti index already used by %s", msg,
brainPin,
EXT_USED[index]);
return;
}