diff options
Diffstat (limited to 'keyboards/matrix/abelx/halconf.h')
-rw-r--r-- | keyboards/matrix/abelx/halconf.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/keyboards/matrix/abelx/halconf.h b/keyboards/matrix/abelx/halconf.h index fb5a76072..e68682e70 100644 --- a/keyboards/matrix/abelx/halconf.h +++ b/keyboards/matrix/abelx/halconf.h | |||
@@ -29,7 +29,7 @@ | |||
29 | #define HALCONF_H | 29 | #define HALCONF_H |
30 | 30 | ||
31 | #define _CHIBIOS_HAL_CONF_ | 31 | #define _CHIBIOS_HAL_CONF_ |
32 | #define _CHIBIOS_HAL_CONF_VER_7_0_ | 32 | #define _CHIBIOS_HAL_CONF_VER_7_1_ |
33 | 33 | ||
34 | #include "mcuconf.h" | 34 | #include "mcuconf.h" |
35 | 35 | ||
@@ -69,6 +69,13 @@ | |||
69 | #endif | 69 | #endif |
70 | 70 | ||
71 | /** | 71 | /** |
72 | * @brief Enables the EFlash subsystem. | ||
73 | */ | ||
74 | #if !defined(HAL_USE_EFL) || defined(__DOXYGEN__) | ||
75 | #define HAL_USE_EFL FALSE | ||
76 | #endif | ||
77 | |||
78 | /** | ||
72 | * @brief Enables the GPT subsystem. | 79 | * @brief Enables the GPT subsystem. |
73 | */ | 80 | */ |
74 | #if !defined(HAL_USE_GPT) || defined(__DOXYGEN__) | 81 | #if !defined(HAL_USE_GPT) || defined(__DOXYGEN__) |
@@ -405,7 +412,7 @@ | |||
405 | * buffers. | 412 | * buffers. |
406 | */ | 413 | */ |
407 | #if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__) | 414 | #if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__) |
408 | #define SERIAL_BUFFERS_SIZE 16 | 415 | #define SERIAL_BUFFERS_SIZE 128 |
409 | #endif | 416 | #endif |
410 | 417 | ||
411 | /*===========================================================================*/ | 418 | /*===========================================================================*/ |
@@ -451,13 +458,12 @@ | |||
451 | #define SPI_USE_CIRCULAR FALSE | 458 | #define SPI_USE_CIRCULAR FALSE |
452 | #endif | 459 | #endif |
453 | 460 | ||
454 | |||
455 | /** | 461 | /** |
456 | * @brief Enables the @p spiAcquireBus() and @p spiReleaseBus() APIs. | 462 | * @brief Enables the @p spiAcquireBus() and @p spiReleaseBus() APIs. |
457 | * @note Disabling this option saves both code and data space. | 463 | * @note Disabling this option saves both code and data space. |
458 | */ | 464 | */ |
459 | #if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) | 465 | #if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) |
460 | #define SPI_USE_MUTUAL_EXCLUSION FALSE | 466 | #define SPI_USE_MUTUAL_EXCLUSION TRUE |
461 | #endif | 467 | #endif |
462 | 468 | ||
463 | /** | 469 | /** |