1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

Remove USE_SWDIO, simply refer to DEBUG (#12361)

Remove USE_SWDIO, simply refer to debug

Command line of `make TARGET=STM32F405 DEBUG=GDB` will trigger this.

Alternative is simply `make TARGET=STM32F405 EXTRA_FLAGS="-DDEBUG"`
This commit is contained in:
J Blackman 2023-02-15 07:37:16 +11:00 committed by GitHub
parent 4fe980384c
commit 3598f3e41a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 84 additions and 16 deletions

View file

@ -111,3 +111,5 @@ typedef enum {
} debugType_e;
extern const char * const debugModeNames[DEBUG_COUNT];
void debugInit(void);