BRT Community

Please login or register.

Login with username, password and session length
Advanced search  

News:

Welcome to the Bridgetek Community!

Please read our Welcome Note

Technical Support enquires
please contact the team
@ Bridgetek Support

Please refer to our website for detailed information on all our products - Bridgetek - Bridging Technology

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - jctibor

Pages: [1]
1
Discussion - EVE / BT817 status register
« on: October 04, 2024, 02:44:57 PM »
Hello brt comminity,

i am working on project which is some kind of medical plasma high voltage generator. The spark produces a lot of EMI noise and diplay sometimes stucks. I need to investigate where is the problem and do proper EMC and SW hooks to solve it. My vision is to read some error or status registers and based on it do a proper action. Is there something like that? I am looking into datasheets and prog. guides but i cant find anythink like that. Can somebody suggest me something?

Best regards.

2
Discussion - EVE / Re: Drawing color issues
« on: September 12, 2024, 09:42:38 AM »
I SOLVE IT !!

It was caused by "config->PCLKPol = 0;" .. changing it to config->PCLKPol = 1;, it dissappear.

Thank you!

3
Discussion - EVE / Re: Drawing color issues
« on: September 12, 2024, 08:27:46 AM »
Hello,

thank you for reply. i am not sure if it is related with EAB video settings, because as you can see, this effect is also apparent on touch screen calibration dots, which are not user accessible and are (i assume) built in in eve chip.

(video settings in attachement, it is sample shot on EAB examples)

This is code for playing video, it is borrowed from https://github.com/Bridgetek/EveApps/blob/master/SampleApp/Video/Src/Video.c
Code: [Select]
void SAMAPP_Video_fromFlashFullScreen()
{
#if defined(EVE_FLASH_AVAILABLE) && defined(FT81X_ENABLE)// FT81X only
    const uint32_t flashSource = 260288;

    if (!FlashHelper_SwitchFullMode(s_pHalContext))
    {
        APP_ERR("SwitchFullMode failed");
        return;
    }
    Draw_Text(s_pHalContext, "Example for: Video display from Flash - full screen ");

    SAMAPP_INFO_START;
    EVE_CoCmd_flashSource(s_pHalContext, flashSource);
    EVE_CoCmd_playVideo(s_pHalContext, OPT_FULLSCREEN | OPT_FLASH | OPT_SOUND | OPT_NOTEAR);

    EVE_Cmd_waitFlush(s_pHalContext); //Video plays after this
    EVE_CoCmd_nop(s_pHalContext);
    EVE_Cmd_waitFlush(s_pHalContext);
    SAMAPP_DELAY_NEXT;
#endif
}

The display settings are as follows:
Code: [Select]
else if (display == EVE_DISPLAY_WXGA_1280x800_65Hz && freq == 72000000)
{
/*
BT817 known values:
REG_FREQUENCY: 72MHz
Resolution: 1280x800
Refresh rate: 65Hz
*/
#if EVE_HARDCODED_DISPLAY_TIMINGS
if (supportedResolution)
{
config->Width = 1280;
config->Height = 800;
config->HCycle = 1411;
config->HOffset = 120;
config->HSync0 = 0;
config->HSync1 = 100;
config->VCycle = 815;
config->VOffset = 14;
config->VSync0 = 0;
config->VSync1 = 10;
config->PCLK = 1;
config->PCLKFreq = 0x8a1;
}
#endif
config->CSpread = 0;
config->Dither = 0;
config->PCLKPol = 0;
config->OutBitsR = 0;
config->OutBitsG = 0;
config->OutBitsB = 0;
}

PCLKFreq may not be the original value, because as i mentioned in the original post, first time i observe this issue, it helps changing this freq.

If you need more info, please let me know.
Did you ever seen this phenomena on BT817?
Thank you very much.
Regards,
Jiri

4
Discussion - EVE / Drawing color issues
« on: September 06, 2024, 12:32:07 PM »
Hello BRT comminity,

first of all. let me introduce myself, i am embedded developer of power inverters etc, i am really newbee in diplays developlment. So i am not able to describe this issue, i think that is has some exact describtion. Therefore it is hard to solve this issue. I will show you on the pictures:




  • How is this issue called in display terminology?
  • How to solve this issue?

This my first example project, this issue comes when i rotate the display view and i solve it by changing PCLK freq (probably was walkaround). In second ones, it doesnt works. Cau you help me please?

My HW:
Riverdi RVT101HVBNWC00-B with EVE4(BT817Q)
Riverdi STM32 dev. board

Lib:
EVE asset builder SDK (from sample app)

Best regards


Pages: [1]