From 59ed3bdd9fa8dc6e0677cf8d4478a5a32fee4500 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Thu, 2 Jul 2020 22:19:11 +0200 Subject: [PATCH] nrf: Enable nrf tick support on all boards by default. Having time.ticks_ms/us/add/diff is very useful and used by many drivers, libraries and components. --- ports/nrf/mpconfigport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/nrf/mpconfigport.h b/ports/nrf/mpconfigport.h index fc34a7cf26..c5304b20d0 100644 --- a/ports/nrf/mpconfigport.h +++ b/ports/nrf/mpconfigport.h @@ -175,7 +175,7 @@ #endif #ifndef MICROPY_PY_TIME_TICKS -#define MICROPY_PY_TIME_TICKS (0) +#define MICROPY_PY_TIME_TICKS (1) #endif #define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)