FTDI Community

Please login or register.

Login with username, password and session length.
Advanced Search  

News:

Welcome to the FTDI Community!

Please read our Welcome Note

Technical Support enquires
please contact the team
@ FTDI Support


New Bridgetek Community is now open

Please note that we have created the Bridgetek Community to discuss all Bridgetek products e.g. EVE, MCU.

Please follow this link and create a new user account to get started.

Bridgetek Community

Show Posts

You can view here all posts made by this member. Note that you can only see posts made in areas to which you currently have access.

Messages - FTDI Community

Pages: 1 ... 48 49 [50] 51 52 ... 60
736
General Discussion / Re: FT82x
« on: October 31, 2018, 01:30:11 PM »
Hello,

If we take the example from the following WQVGA settings:
Code: [Select]

    // WQVGA display parameters
    lcdWidth   = 800;                                                           // Active width of LCD display
    lcdHeight  = 480;                                                           // Active height of LCD display
    lcdHcycle  = 928;                                                           // Total number of clocks per line
    lcdHoffset = 88;                                                            // Start of active line
    lcdHsync0  = 0;                                                             // Start of horizontal sync pulse
    lcdHsync1  = 48;                                                            // End of horizontal sync pulse
    lcdVcycle  = 525;                                                           // Total number of lines per screen
    lcdVoffset = 32;                                                            // Start of active screen
    lcdVsync0  = 0;                                                             // Start of vertical sync pulse
    lcdVsync1  = 3;                                                             // End of vertical sync pulse
    lcdPclk    = 2;                                                             // Pixel Clock
    lcdSwizzle = 0;                                                             // Define RGB output pins
    lcdPclkpol = 1;                                                             // Define active edge of PCLK
                     

HCYCLE = 928
VCYCLE = 525
VCYCLE * HCYCLE  = 487,200

Note: REG_PCLK is using the value 2 which will divide the clock down to 30Mhz.

Result = 30,000,000/487,200 = ~ 61

The intention in this example is to get the refresh rate at or near 60 fps, but if your display can support higher PCLKs then a higher refresh rate should be possible.

Best Regards,
FTDI Community

737
General Discussion / Re: FT82x
« on: October 31, 2018, 10:37:16 AM »
Hello

Basically the refresh rate depends on which Display you are using, the PCLK that this display can support, and its size. Multiplying the HCYCLE and VCYCLE values will give you the total number of Pixels to be rendered, dividing this number by PCLK will give you the theoretical refresh rate for the display.

Best Regards,
FTDI Community

738
Hello,

This is because you were looking to obtain the font metric block data, which is obscured when using the compressed option.

Best Regards,
FTDI Community

739
Discussion - Software / Re: BT815 Car Dashboard
« on: October 25, 2018, 04:01:59 PM »
Hello,

We will have the Car Dashboard Demo at electronica 2018 Munich, if possible come visit us there!
The source code should be available after the conference.

There are several different conversion options, which can provide different quality options to the user, these are explained at the the following:
https://brtchip.com/wp-content/uploads/Support/Documentation/Application_Notes/ICs/EVE/AN_314_FT800_Advanced-Techniques_Working-with-Bitmaps.pdf

We also have a new 'EVE Asset Manager' which will allow you to convert images and test the different options available:
https://brtchip.com/utilities/

Best Regards,
FTDI Community

740
Discussion - Software / Re: BT815 Car Dashboard
« on: October 24, 2018, 11:53:18 AM »
Hello,

The Car Dashboard Demo Sheet notes that the LCD Display is WVGA:
https://brtchip.com/Brochures/BT815%20Car%20Dashboard%20Demo%20Sheet.pdf

Best Regards,
FTDI Community

741
Hello,

The compressed option in ESE does output compressed files with which the INFLATE command can be used.

Best Regards,
FTDI Community

742
Hello,

This sounds like an issue with EVE Screen Editor, I will pass this onto the development team as there is a new release due out soon.

As for the inbuilt fonts:
  • 16-19 - CP437 from the FreeBSD distribution's console
  • 20-25 - helvR08, etc from X11
  • 26-29 - Roboto Regular

Best Regards,
FTDI Community

743
Hello,

The V2DAP firmware can control two USB host ports from a single UART and also provides the monitor command set.

This monitor protocol is necessary so that you can direct your commands and data from the single UART to the relevant USB port, and likewise when receiving data from the USB device on each port.

You can find the V2DAP firmware and source in the samples installed with the toolchain. Please ensure to use the latest toolchain and install service pack 2.
https://www.ftdichip.com/Firmware/VNC2tools.htm

Best Regards, FTDI Community

744
Hi Tony,

In the output code file, you should see a definition corresponding to the 'address' field of the font properties. We used Consola here and so your definition may be different.


In the code below we set the start address defined as 1000 and so we got:

#define RAM_FONTS_CONSOLA 1000
static ft_uchar8_t fonts_consola[] = {
   /*('file properties: ', 'resolution ', 16, 'x', 22, 'format ', 'L8', 'stride ', 16)*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
[remainder of font data]


Then later at the bottom of the code you should see the following where the code is loaded into RAM_G beginning at location 1000
   Ft_Gpu_Hal_WrMem(phost,RAM_FONTS_CONSOLA, fonts_consola, sizeof(fonts_consola));
   Ft_Gpu_CoCmd_SetFont2(phost,0, 1000, 32);

Does this match what you see?

If you have some screenshots or further information you can also send it to our support address support1@ftdichip.com.

Best Regards, FTDI Community

745
Discussion - Drivers / Re: issue related to UM232H eval. board
« on: October 01, 2018, 11:53:24 AM »
Hello,

Yes, TxE# tells your FPGA that there is space in the buffer and if you keep writing data to the FIFO without reading at the PC side, then the buffer will fill up and the device will tell you to stop.

Your application in Visual Studio should check for data being available using FT_GetStatus or FT_GetQueueStatus as shown in the document below. If there is any data available (RxBytes > 0) then you would read the data with FT_Read.

When you write the data to the FIFO from the FPGA, you will find that FT_GetStatus/FT_GetQueueStatus show the number of bytes. You can use a loop in the application in Visual Studio which keeps checking for data and reads any data available and puts it in a buffer in the application.

You can find the example code in the document below.

https://www.ftdichip.com/Support/Documents/TechnicalNotes/TN_167_FIFO_Basics.pdf

Best Regards, FTDI Community


746
General Discussion / Re: FT82x
« on: September 28, 2018, 11:16:55 AM »
Hello,

The BT81X should be available by the end of the year.

Best Regards,
FTDI Community

747
Discussion - Hardware / Re: FT813 GRAM size 1MB to be increased soon?
« on: September 26, 2018, 03:10:47 PM »
Hello,

Yes, I believe for what you are trying to achieve the BT815/6 would be a solution.

Best Regards,
FTDI Community

748
Discussion - Software / Re: VNC2 Firmware Update Fail safe
« on: September 26, 2018, 10:22:53 AM »
Hi,

You can still update via UART in this case.

Have a look at AN_159 - Vinculum-II Firmware Flash Programming for further information:

https://www.ftdichip.com/Support/Documents/AppNotes/AN_159%20Vinculum-II%20Firmware%20Flash%20Programming.pdf

Regards,
FTDI Community

749
Discussion - Software / Re: Screen Editor - how to create Font Metric Block
« on: September 25, 2018, 11:00:27 AM »
Hello,

If you ensure that the 'Compressed' option is unselected in the Content pane for your custom font the resulting output from your export will include the metric block data at the start of the file.

Best Regards,
FTDI Community

750
Discussion - Hardware / Re: FT813 GRAM size 1MB to be increased soon?
« on: September 24, 2018, 10:59:21 AM »
Hello,

The img_cvt.exe cannot produce ASTC files, we have a upcoming asset convertor which will support this.
And yes, in your situation this is not possible with the FT813.

Best Regards,
FTDI Community

Pages: 1 ... 48 49 [50] 51 52 ... 60