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 - BRT Community

Pages: 1 ... 37 38 [39] 40 41 ... 50
571
Discussion - EVE / Re: Add code after exporting from Screen Designer
« on: June 03, 2020, 02:52:18 PM »
Hello Valdi,

Would it be possible for your to provide your project files so I can investigate this behaviour?
If you wish you can email these to support.emea@brtchip.com

Best Regards,
BRT Community

572
Hello,

Can you provide an example of the gradient you are seeing these issues on?
CMD_GRADIENT will calculate a blend from one colour to another, the use of 18bit RGB may effect whats output on the panel, along with the algorithm used to calculate the blend. You may find bitmaps a better option to provide a background gradient from tow colours which closely match each other.


Best Regards,
BRT Community

573
Discussion - EVE / Re: Pin Connection from CTP Controller IC to Panel
« on: June 03, 2020, 01:22:35 PM »
Hello,

Yes, in my experience it is the norm that capacitive touch panels usually integrate the controller.

Qrenz, I can provide the part number of the panels used on our CTP development modules if you are interested.

Best Regards,
BRT Community

574
Discussion - EVE / Re: Pin Connection from CTP Controller IC to Panel
« on: June 02, 2020, 11:47:39 AM »
Hello,

You would need to look up the datasheet for the LCD panel you are using to determine its pinout.
You can then cross reference this with the FT5206 datasheet to establish which connections need to be made.

Best Regards,
BRT Community

575
Discussion - EVE / Re: Problem with my custom BT815 circuit
« on: May 25, 2020, 04:01:56 PM »
Hello,

Yes, unfortunately your schematic is quite hard to read, could you label the supply lines and ground?
Are the supplies on the board correct? Is there a voltage on VOUT1V2?

Best Regards,
BRT Community

576
Discussion - MCU / Re: FT9xx Driver problem Windows 7
« on: May 20, 2020, 04:33:05 PM »
Hello,

Yes Windows Update will be searched for the driver which can cause delays.

However please ‘restore the bootloader’ using the UMFTPD2A which should resolve the issue.

Best Regards,
FTDI Community

577
Discussion - EVE / Re: EVE Asset Builder
« on: May 18, 2020, 02:00:15 PM »
Hello,

Thanks for you post.
I have passed this on to the development team for EAB for their consideration.

Best Regards,
BRT Community

578
Discussion - EVE / Re: BT816 : flash reading fail
« on: May 13, 2020, 02:45:22 PM »
Hello,

Which MCU are you using? you mentioned starting with Riverdis flash examples, have you been porting the examples for your given MCU platform?

Below is a link to the updated BRT samples for the BT81x series. In particular set10 deals with the new flash functionality:
SampleApp EVE_Samples_v1.1.0_RC_28062019.zip
These have been tested on the VM816C50A-D board.


Best Regards,
BRT Community

579
Discussion - EVE / Re: BT816 : flash reading fail
« on: May 12, 2020, 04:49:35 PM »
Hello,

Could you give me some more details on the hardware you are using?
Are you using our VM816C50A or VM816CU50A?

Best Regards,
BRT Community

580
Discussion - EVE / Re: BT816 : flash reading fail
« on: May 06, 2020, 04:56:18 PM »
Hello,

Can you try flushing the co-pro buffer and double checking the REG_CMD_READ and REG_CMD_WRITE pointers are equal before issuing the flash read command as per the below example?

Code: [Select]
bool_t AppFlashErase(void)
{
/* Erase the flash */
uint8_t status = Gpu_Hal_Rd8(g_phost, REG_FLASH_STATUS);
#ifdef _DEBUG
printf("\nFlash status %d (%s)\n", status, flash_status[status]);
#endif
if (status == FLASH_STATUS_DETACHED)
{
Gpu_CoCmd_FlashAttach(g_phost);
App_Flush_Co_Buffer(g_phost);
Gpu_Hal_WaitCmdfifo_empty(g_phost);
status = Gpu_Hal_Rd8(g_phost, REG_FLASH_STATUS);
#ifdef _DEBUG
printf("Flash status %d (%s)\n", status, flash_status[status]);
#endif
if (FLASH_STATUS_BASIC != status)
{
printf("Error, Flash is not able to attach\n");
return FALSE;
}
}
printf("Erasing Flash...\n");
Gpu_CoCmd_FlashErase(g_phost);
App_Flush_Co_Buffer(g_phost);
Gpu_Hal_WaitCmdfifo_empty(g_phost);
/* Check first 4KB */
uint8_t *p_flashbuf = (uint8_t *)calloc(4 * 1024, sizeof(uint8_t));
Gpu_CoCmd_FlashHelper_Read(g_phost, 0, 0, 4 * 1024, p_flashbuf);
for (int i = 0; i < 4 * 1024; i++)
{
if (*(p_flashbuf++) != 0xFF)
{
return FALSE;
}
}
return TRUE;
}

Best Regards,
BRT Communnity

581
Discussion - EVE / Re: UTF-8 Encoding Error
« on: May 04, 2020, 04:41:08 PM »
Hello,

Can you check the settings of EAB font conversion?   
To use the glyph in RAM_G,  you need set it properly in EAB.  See attached image.

Best Regards,
BRT Community

582
Discussion - EVE / Re: BT816 : flash reading fail
« on: April 30, 2020, 04:50:21 PM »
Hello,

Would it be possible to see your code?
And can you let me know which EVE library you are using?

Best Regards,
BRT Community

583
Discussion - EVE / Re: UTF-8 Encoding Error
« on: April 29, 2020, 11:58:02 AM »
Hello

I have asked the development team if the font convertor version number should have incremented for the latest release.

In the meantime, we have given it a go here, please see below for the ESE source and attached screenshot:
Font_112.zip

Best Regards,
BRT Community

584
Discussion - EVE / Re: EVE Asset Builder Installation Problem
« on: April 29, 2020, 11:25:54 AM »
Hello,

Glad to hear that it is now working for you!

Best Regards,
BRT Community

585
Hello,

All ESD projects created for FT90X based platform can exported as eclipse based project.
When creating the new project select the target platform as VM816C50A , the default MCU platform is MM900EV1B board. To get the eclipse Based project, you can use File > Export as Eclipse Project.

However, if you want to support ESP32 platform, you will still need adapt the code in hardware abstraction layer for the ESP32.


Best Regards,
BRT Community


Pages: 1 ... 37 38 [39] 40 41 ... 50