Skip to content

Commit

Permalink
Delay HDMI PHY service for 30 VYSNCs as workaround for sync abort at …
Browse files Browse the repository at this point in the history
…XIicPs_MasterSendPolled().
  • Loading branch information
coltonshane committed May 20, 2020
1 parent b612dc8 commit b48cd85
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions base_cmd.vitis/WAVE/src/hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,15 @@ void hdmiInit(void)
}
}

u32 skip = 30;
void hdmiService(void)
{
if(skip > 0)
{
skip--;
return;
}

// Check for HPD and HDMI clock termination.
SendBuffer[0] = 0x42;
XIicPs_SetOptions(&Iic,XIICPS_REP_START_OPTION);
Expand Down

0 comments on commit b48cd85

Please sign in to comment.