Lines Matching refs:LPCmd

1451 HAL_StatusTypeDef HAL_DSI_ConfigCommand(DSI_HandleTypeDef *hdsi, DSI_LPCmdTypeDef *LPCmd)  in HAL_DSI_ConfigCommand()  argument
1456 assert_param(IS_DSI_LP_GSW0P(LPCmd->LPGenShortWriteNoP)); in HAL_DSI_ConfigCommand()
1457 assert_param(IS_DSI_LP_GSW1P(LPCmd->LPGenShortWriteOneP)); in HAL_DSI_ConfigCommand()
1458 assert_param(IS_DSI_LP_GSW2P(LPCmd->LPGenShortWriteTwoP)); in HAL_DSI_ConfigCommand()
1459 assert_param(IS_DSI_LP_GSR0P(LPCmd->LPGenShortReadNoP)); in HAL_DSI_ConfigCommand()
1460 assert_param(IS_DSI_LP_GSR1P(LPCmd->LPGenShortReadOneP)); in HAL_DSI_ConfigCommand()
1461 assert_param(IS_DSI_LP_GSR2P(LPCmd->LPGenShortReadTwoP)); in HAL_DSI_ConfigCommand()
1462 assert_param(IS_DSI_LP_GLW(LPCmd->LPGenLongWrite)); in HAL_DSI_ConfigCommand()
1463 assert_param(IS_DSI_LP_DSW0P(LPCmd->LPDcsShortWriteNoP)); in HAL_DSI_ConfigCommand()
1464 assert_param(IS_DSI_LP_DSW1P(LPCmd->LPDcsShortWriteOneP)); in HAL_DSI_ConfigCommand()
1465 assert_param(IS_DSI_LP_DSR0P(LPCmd->LPDcsShortReadNoP)); in HAL_DSI_ConfigCommand()
1466 assert_param(IS_DSI_LP_DLW(LPCmd->LPDcsLongWrite)); in HAL_DSI_ConfigCommand()
1467 assert_param(IS_DSI_LP_MRDP(LPCmd->LPMaxReadPacket)); in HAL_DSI_ConfigCommand()
1468 assert_param(IS_DSI_ACK_REQUEST(LPCmd->AcknowledgeRequest)); in HAL_DSI_ConfigCommand()
1483 hdsi->Instance->CMCR |= (LPCmd->LPGenShortWriteNoP | \ in HAL_DSI_ConfigCommand()
1484 LPCmd->LPGenShortWriteOneP | \ in HAL_DSI_ConfigCommand()
1485 LPCmd->LPGenShortWriteTwoP | \ in HAL_DSI_ConfigCommand()
1486 LPCmd->LPGenShortReadNoP | \ in HAL_DSI_ConfigCommand()
1487 LPCmd->LPGenShortReadOneP | \ in HAL_DSI_ConfigCommand()
1488 LPCmd->LPGenShortReadTwoP | \ in HAL_DSI_ConfigCommand()
1489 LPCmd->LPGenLongWrite | \ in HAL_DSI_ConfigCommand()
1490 LPCmd->LPDcsShortWriteNoP | \ in HAL_DSI_ConfigCommand()
1491 LPCmd->LPDcsShortWriteOneP | \ in HAL_DSI_ConfigCommand()
1492 LPCmd->LPDcsShortReadNoP | \ in HAL_DSI_ConfigCommand()
1493 LPCmd->LPDcsLongWrite | \ in HAL_DSI_ConfigCommand()
1494 LPCmd->LPMaxReadPacket); in HAL_DSI_ConfigCommand()
1498 hdsi->Instance->CMCR |= LPCmd->AcknowledgeRequest; in HAL_DSI_ConfigCommand()