From 6ee8e0093630620b48abeedba71ba478d586084f Mon Sep 17 00:00:00 2001 From: Matthew McGowan Date: Fri, 10 Jun 2022 12:19:43 -0700 Subject: [PATCH] fix(stm32): correct include path after translation header was moved --- ports/stm/common-hal/rtc/RTC.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/stm/common-hal/rtc/RTC.c b/ports/stm/common-hal/rtc/RTC.c index 1ea2d63ebf..48c47fda8c 100644 --- a/ports/stm/common-hal/rtc/RTC.c +++ b/ports/stm/common-hal/rtc/RTC.c @@ -33,7 +33,7 @@ #include "common-hal/rtc/RTC.h" #include "shared-bindings/rtc/RTC.h" #include "supervisor/port.h" -#include "supervisor/shared/translate.h" +#include "supervisor/shared/translate/translate.h" #include "peripherals/rtc.h"