Lines Matching refs:LPCmd

1312 HAL_StatusTypeDef HAL_DSI_ConfigCommand(DSI_HandleTypeDef *hdsi, DSI_LPCmdTypeDef *LPCmd)  in HAL_DSI_ConfigCommand()  argument
1317 assert_param(IS_DSI_LP_GSW0P(LPCmd->LPGenShortWriteNoP)); in HAL_DSI_ConfigCommand()
1318 assert_param(IS_DSI_LP_GSW1P(LPCmd->LPGenShortWriteOneP)); in HAL_DSI_ConfigCommand()
1319 assert_param(IS_DSI_LP_GSW2P(LPCmd->LPGenShortWriteTwoP)); in HAL_DSI_ConfigCommand()
1320 assert_param(IS_DSI_LP_GSR0P(LPCmd->LPGenShortReadNoP)); in HAL_DSI_ConfigCommand()
1321 assert_param(IS_DSI_LP_GSR1P(LPCmd->LPGenShortReadOneP)); in HAL_DSI_ConfigCommand()
1322 assert_param(IS_DSI_LP_GSR2P(LPCmd->LPGenShortReadTwoP)); in HAL_DSI_ConfigCommand()
1323 assert_param(IS_DSI_LP_GLW(LPCmd->LPGenLongWrite)); in HAL_DSI_ConfigCommand()
1324 assert_param(IS_DSI_LP_DSW0P(LPCmd->LPDcsShortWriteNoP)); in HAL_DSI_ConfigCommand()
1325 assert_param(IS_DSI_LP_DSW1P(LPCmd->LPDcsShortWriteOneP)); in HAL_DSI_ConfigCommand()
1326 assert_param(IS_DSI_LP_DSR0P(LPCmd->LPDcsShortReadNoP)); in HAL_DSI_ConfigCommand()
1327 assert_param(IS_DSI_LP_DLW(LPCmd->LPDcsLongWrite)); in HAL_DSI_ConfigCommand()
1328 assert_param(IS_DSI_LP_MRDP(LPCmd->LPMaxReadPacket)); in HAL_DSI_ConfigCommand()
1329 assert_param(IS_DSI_ACK_REQUEST(LPCmd->AcknowledgeRequest)); in HAL_DSI_ConfigCommand()
1344 hdsi->Instance->CMCR |= (LPCmd->LPGenShortWriteNoP | \ in HAL_DSI_ConfigCommand()
1345 LPCmd->LPGenShortWriteOneP | \ in HAL_DSI_ConfigCommand()
1346 LPCmd->LPGenShortWriteTwoP | \ in HAL_DSI_ConfigCommand()
1347 LPCmd->LPGenShortReadNoP | \ in HAL_DSI_ConfigCommand()
1348 LPCmd->LPGenShortReadOneP | \ in HAL_DSI_ConfigCommand()
1349 LPCmd->LPGenShortReadTwoP | \ in HAL_DSI_ConfigCommand()
1350 LPCmd->LPGenLongWrite | \ in HAL_DSI_ConfigCommand()
1351 LPCmd->LPDcsShortWriteNoP | \ in HAL_DSI_ConfigCommand()
1352 LPCmd->LPDcsShortWriteOneP | \ in HAL_DSI_ConfigCommand()
1353 LPCmd->LPDcsShortReadNoP | \ in HAL_DSI_ConfigCommand()
1354 LPCmd->LPDcsLongWrite | \ in HAL_DSI_ConfigCommand()
1355 LPCmd->LPMaxReadPacket); in HAL_DSI_ConfigCommand()
1359 hdsi->Instance->CMCR |= LPCmd->AcknowledgeRequest; in HAL_DSI_ConfigCommand()