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
Hello,

Here's some feedback from the author of BRT_AN_041 FT90x-MQTT-Application:

You would still need networking support and some form of low level OS.

mbed and FreeRTOS are providing much the same support.

mbed has support for Ethernet and other stuff but you’d have to port it to FT900.

The advantage is that we have already implemented FreeRTOS, lwIP and mbedTLS in that example.

Maybe other users in the community have more input?

Best Regards,

BRT Community

572
Hi Guys,

I will try to clarify with the development team regarding which modes CMD_FLASHUPDATE works in:

However, it is not clear if CMD_FLASHUPDATE even works in BASIC mode as this command is missing from the table on page 17 of the programming manual.
It should work at least in FULL mode but clearing the first sector with CMD_FLASHUPDATE should only be possible in BASIC mode.
I asked that before but have no answer to this so far.

Best Regards,
BRT Community

573
Hello,

A 1 min erase time for a 16MB flash does seem rather long.

Which EVE library are you using? and can I see the code you are using to call the erase?


Best Regards,
BRT Community

574
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

575
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

576
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

577
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

578
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

579
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

580
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

581
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

582
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

583
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

584
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

585
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

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