1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 07:15:18 +03:00

Debug - Make dbgPins weak so that target.c files can define them.

This commit is contained in:
Dominic Clifton 2021-08-18 10:01:28 +02:00
parent faa69d0aeb
commit c04a6c9b67

View file

@ -32,7 +32,7 @@ typedef struct dbgPin_s {
uint32_t resetBSRR; uint32_t resetBSRR;
} dbgPin_t; } dbgPin_t;
dbgPin_t dbgPins[] = { __weak dbgPin_t dbgPins[] = {
{ .tag = IO_TAG(NONE) }, { .tag = IO_TAG(NONE) },
}; };