-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcmw_utils.h
More file actions
31 lines (26 loc) · 1022 Bytes
/
cmw_utils.h
File metadata and controls
31 lines (26 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
******************************************************************************
* @file cmw_utils.h
* @author GPM Application Team
*
******************************************************************************
* @attention
*
* Copyright (c) 2024 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
#ifndef CMW_UTILS
#define CMW_UTILS
#include "stm32n6xx_hal.h"
#include "cmw_camera.h"
int32_t CMW_UTILS_getClosest_HAL_PHYBitrate(uint32_t val);
void CMW_UTILS_GetPipeConfig(uint32_t cam_width, uint32_t cam_height, CMW_DCMIPP_Conf_t *p_conf,
DCMIPP_CropConfTypeDef *crop, DCMIPP_DecimationConfTypeDef *dec,
DCMIPP_DownsizeTypeDef *down);
#endif