Lines Matching refs:pROIConfig
4995 … const DCMIPP_RegionOfInterestConfTypeDef *pROIConfig) in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig() argument
5009 assert_param(IS_DCMIPP_ROI(pROIConfig->RegionOfInterest)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5010 assert_param(IS_DCMIPP_ROI_START(pROIConfig->HStart)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5011 assert_param(IS_DCMIPP_ROI_START(pROIConfig->VStart)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5012 assert_param(IS_DCMIPP_ROI_SIZE(pROIConfig->HSize)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5013 assert_param(IS_DCMIPP_ROI_SIZE(pROIConfig->VSize)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5014 assert_param(IS_DCMIPP_ROI_COLOR(pROIConfig->ColorLineBlue)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5015 assert_param(IS_DCMIPP_ROI_COLOR(pROIConfig->ColorLineGreen)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5016 assert_param(IS_DCMIPP_ROI_COLOR(pROIConfig->ColorLineRed)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5017 assert_param(IS_DCMIPP_ROI_LINE_WIDTH(pROIConfig->LineSizeWidth)); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5019 region_index = pROIConfig->RegionOfInterest; in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5031 MODIFY_REG(hdcmipp->Instance->P1CMRICR, 0x000003U, pROIConfig->LineSizeWidth); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5040 MODIFY_REG(hdcmipp->Instance->P2CMRICR, 0x000003U, pROIConfig->LineSizeWidth); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5044 MODIFY_REG(region->PxRIxCR1, 0x3FFFFFFFU, (((uint32_t)pROIConfig->ColorLineBlue << 12U) | in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5045 ((uint32_t)pROIConfig->ColorLineGreen << 14U) | in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5046 ((uint32_t)pROIConfig->ColorLineRed << 28U) | \ in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5047 … ((uint32_t)pROIConfig->VStart << 16U) | (pROIConfig->HStart))); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()
5050 …MODIFY_REG(region->PxRIxCR2, 0xFFF0FFFU, ((uint32_t)pROIConfig->VSize << 16U) | pROIConfig->HSize); in HAL_DCMIPP_PIPE_SetRegionOfInterestConfig()