diff options
author | Nick Brassel <nick@tzarc.org> | 2021-01-20 01:50:51 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 14:50:51 +0000 |
commit | 3b1ffd2ede296e17668f8763c7083aa4c9a3ce7d (patch) | |
tree | b3b2a5abf76d77da2ea3538f26efd1992f385160 /platforms | |
parent | a7c45daeb8022097a0dbb3859bfcd56b73d65d14 (diff) | |
download | qmk_firmware-3b1ffd2ede296e17668f8763c7083aa4c9a3ce7d.tar.gz qmk_firmware-3b1ffd2ede296e17668f8763c7083aa4c9a3ce7d.zip |
ChibiOS enable memory allocations (#11620)
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/chibios/QMK_PROTON_C/configs/chconf.h | 2 | ||||
-rw-r--r-- | platforms/chibios/common/configs/chconf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/platforms/chibios/QMK_PROTON_C/configs/chconf.h b/platforms/chibios/QMK_PROTON_C/configs/chconf.h index 944576529..a1cbf6808 100644 --- a/platforms/chibios/QMK_PROTON_C/configs/chconf.h +++ b/platforms/chibios/QMK_PROTON_C/configs/chconf.h | |||
@@ -453,7 +453,7 @@ | |||
453 | * @note The default is @p FALSE. | 453 | * @note The default is @p FALSE. |
454 | */ | 454 | */ |
455 | #if !defined(CH_CFG_USE_FACTORY) | 455 | #if !defined(CH_CFG_USE_FACTORY) |
456 | #define CH_CFG_USE_FACTORY TRUE | 456 | #define CH_CFG_USE_FACTORY FALSE |
457 | #endif | 457 | #endif |
458 | 458 | ||
459 | /** | 459 | /** |
diff --git a/platforms/chibios/common/configs/chconf.h b/platforms/chibios/common/configs/chconf.h index 78516a768..44327a82d 100644 --- a/platforms/chibios/common/configs/chconf.h +++ b/platforms/chibios/common/configs/chconf.h | |||
@@ -338,7 +338,7 @@ | |||
338 | * @note The default is @p TRUE. | 338 | * @note The default is @p TRUE. |
339 | */ | 339 | */ |
340 | #if !defined(CH_CFG_USE_MEMCORE) | 340 | #if !defined(CH_CFG_USE_MEMCORE) |
341 | #define CH_CFG_USE_MEMCORE FALSE | 341 | #define CH_CFG_USE_MEMCORE TRUE |
342 | #endif | 342 | #endif |
343 | 343 | ||
344 | /** | 344 | /** |