Associate II
October 23, 2018
Question
STM32H743VITx DCMI DMA Capture in RAM_D2
- October 23, 2018
- 3 replies
- 1027 views
Hi, i able to trigger BSP_CAMERA_SnapshotStart and save the camera output to RAM_D1. But when i change to save the camera output to RAM_D2. I not able to get the output at BSP_CAMERA_FrameEventCallback.
//uint8_t camera_frame_buffer[480*480] __attribute__((section(".ramd1")));
uint8_t camera_frame_buffer[480*480] __attribute__((section(".ramd2")));
......
//Start camera capture
BSP_CAMERA_SnapshotStart((uint8_t *)camera_frame_buffer);
.............
void BSP_CAMERA_FrameEventCallback(void)
{
//Capture data ready
}
Guys, do you have any idea ?
