From 3bbf8a0a313f5b5279ea75abf621f6ab03f672ff Mon Sep 17 00:00:00 2001 From: Kurt Eckhardt Date: Thu, 14 Aug 2025 06:47:59 -0700 Subject: [PATCH] Enable Camera clock on Arduino Portenta H7 We need to start the clock in the same way as we do for the Arduino GIGA. As without the clock started, most cameras will not even make the camera visible to I2C --- loader/fixups.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/loader/fixups.c b/loader/fixups.c index 22129659..2940a4b5 100644 --- a/loader/fixups.c +++ b/loader/fixups.c @@ -71,7 +71,8 @@ static void zephyr_input_callback(struct input_event *evt, void *user_data) { INPUT_CALLBACK_DEFINE(NULL, zephyr_input_callback, NULL); #endif -#if defined(CONFIG_BOARD_ARDUINO_GIGA_R1) && defined(CONFIG_VIDEO) +#if (defined(CONFIG_BOARD_ARDUINO_GIGA_R1) || defined(CONFIG_BOARD_ARDUINO_PORTENTA_H7)) \ + && defined(CONFIG_VIDEO) #include #include #include