OV7670 Support

Fork of BSP_DISCO_F746NG by Huseyin Buyukesmeli

Files at this revision

API Documentation at this revision

Comitter:
buyukesmeli
Date:
Mon Mar 20 10:19:17 2017 +0000
Parent:
9:cd90418a750e
Child:
11:57139c9032e5
Commit message:
Camera interrupt added

Changed in this revision

Drivers/BSP/STM32746G-Discovery/stm32746g_discovery_camera.c Show annotated file Show diff for this revision Revisions of this file
--- a/Drivers/BSP/STM32746G-Discovery/stm32746g_discovery_camera.c	Sat Feb 25 09:31:36 2017 +0000
+++ b/Drivers/BSP/STM32746G-Discovery/stm32746g_discovery_camera.c	Mon Mar 20 10:19:17 2017 +0000
@@ -669,7 +669,14 @@
             the HAL_DCMI_ErrorCallback could be implemented in the user file
    */
 }
-
+ void DCMI_IRQHandler(void) // DCMI interrupt routine
+{
+    HAL_DCMI_IRQHandler(&hDcmiHandler);
+}
+void DMA2_Stream1_IRQHandler(void) // DMA interrupt routine
+{
+    HAL_DMA_IRQHandler(hDcmiHandler.DMA_Handle);
+}
 /**
   * @}
   */