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 ... 9 10 [11] 12 13 ... 60
151
Hello,

Parameter section information could be to do with the size of the linker file.

Please contact your local support office where you can share your project and we can try to help with your issues:

https://ftdichip.com/technical-support/

Best Regards,
FTDI Community

152
Hello,

All information on the VNC2 tools can be found in AN_151 Vinculum II User Guide:

https://ftdichip.com/wp-content/uploads/2020/08/AN_151_Vinculum-II_User_Guide.pdf

The asm error is a value of >255 being loaded into an 8 bit register.
The ASM file can have line numbers from the original C code inline.
Please check the command line options for VinC.exe:

Code: [Select]
VinC.exe
VinC [options] [file ...] [-L linker options]

  -E            Run the pre-processor and stop.
  -S            Stop processing after pre-processing and compilation.
  -c            Pre-process, compile and assemble but do not invoke linker.
  -O level      Specify optimisation for compiler.
  -d level      Specify debug output level for compiler.
  -D macro=defn Defines macro with optional defn in preprocessor.
  -U macro      Undefines macro in preprocessor.
  -I dir        Add a search directory for include files.
  -o file       Specify output filename.
  -l file       Specify log filename.
  --save-temps  Save all temporary files.
  --save-temp   Save temporary files: 'a' assembler, 'i' preprocessor,
                'o' object.
  --combine     Combine source files on command line into single input file
                for compiling.
  --library     Create a single output file for all source files on command
                line.
  -v            Verbose output of command lines for tools.
  -q            Quieten output of command lines for tools.
  --version     Display tool version.
  --all-versions        Display all tool versions.
  --max-warn limit      Limit the number of warnings displayed.
  --max-err limit       Limit the number of errors displayed.
  --help        Display this help message.
  -L            Process all following options as linker options.

The bin file can be up to 256 kB - 4 kB.

Best Regards,
FTDI Community

153
Shared Projects / Re: Matrix Orbital 7" EVE in an EV ATV
« on: June 21, 2022, 04:34:02 PM »
Hello,

Please post any EVE related stuff onto Bridgetek Community:

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

Best Regards,
FTDI Community

154
Shared Projects / Re: 3.5" EVE3 Gas Tracker Gas Flow Monitor
« on: June 21, 2022, 04:33:12 PM »
Hello,

Please post any EVE related stuff onto Bridgetek Community:

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

Best Regards,
FTDI Community

155
Shared Projects / Re: 3.8" EVE2 480x1180 in an Optical Reveiver
« on: June 21, 2022, 04:32:42 PM »
Hello,

Please post any EVE related stuff onto Bridgetek Community:

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

Best Regards,
FTDI Community

156
Discussion - Software / Re: FTProg & FT260 - not perfect ?
« on: June 20, 2022, 04:43:52 PM »
Hello,

We used USBDeview and observe the same behaviour as you.

Then we used a usb analyzer which shows USB enumeration can get the Manufacturer description and Product description.
So we don’t know why USBDeview can not show these two descriptions correctly.

We also used the API “FT260_OpenByProductDescription” to test if we can access the FT260 device after programming the serial number.
The result is OK.

So maybe “USBDeview” has a minor  display error on these two descriptions.

Best Regards,
FTDI Community

157
Discussion - Software / Re: FTProg & FT260 - not perfect ?
« on: June 14, 2022, 04:43:44 PM »
Hello,

Thanks for the information.

I will check with our R&D team to see if they can explain the behaviour seen.

Best Regards,
FTDI Community

158
Hi xenon68,

sting.h is not FTDI code. it is a standard C language header file that you can include in your project. https://www.tutorialspoint.com/c_standard_library/string_h.htm

You can find information about the strstr function online, this link can help you https://www.tutorialspoint.com/c_standard_library/c_function_strstr.htm#

Best Regards

FTDI Community

159
Discussion - Software / Re: FTProg & FT260 - not perfect ?
« on: June 13, 2022, 04:30:25 PM »
Hello,

Can you please confirm if you re-enumerated the device after making the changes in FT_PROG?

You can do this by unplug / replug or by clicking on 'Cycle Ports' in the FT_PROG programming window.

Can you also try with FTDI's version of Microsoft USBView?

You may also want to email your local support team as it seems you have many issues / questions with FT260:

https://ftdichip.com/technical-support/

Best Regards,
FTDI Community

160
Hello,

I had confirmation from our R&D team:

You are correct.
The correct output is 2.60.2.0

We will update the correct code on the next release which is below for your reference:

Code: [Select]
// Show version information
    DWORD dwChipVersion = 0;

    ftStatus = FT260_GetChipVersion(ft260Handle, &dwChipVersion);
    if (FT260_OK != ftStatus)
    {
        printf("Get chip version Failed, status: %d\n", ftStatus);
    }
    else
    {
        printf("Get chip version OK dwChipVersion=%ld\n",dwChipVersion);
                               
        printf("Chip version : %x.%x.%x.%x\n",
            ((dwChipVersion >> 24) & MASK_1), //  ((dwChipVersion >> 24) & MASK_1),
            ((dwChipVersion >> 16) & MASK_1), //  ((dwChipVersion >> 16) & MASK_1),
            ((dwChipVersion >> 8) & MASK_1), //   ((dwChipVersion >> 8) & MASK_1)
            (dwChipVersion & MASK_1) ); //  (dwChipVersion & MASK_1) );
    }

    DWORD dwLibVersion = 0;
   
    ftStatus =  FT260_GetLibVersion(&dwLibVersion);
    if (FT260_OK != ftStatus)
    {
        printf("FT260_GetLibVersion Failed, status: %d\n", ftStatus);
    }
    else
    {
        printf("FT260_GetLibVersion OK\n");

        printf("dllVersion:%8x\n", dwLibVersion);
    }

Best Regards,
FTDI Community

161
Hi Chris,

we advise against using VNC2 with no flow control as this can result in data loss. try setting RTS_CTS flow control to see if this fixes the issue. if it doesn't let me know and we can go from there.

Best Regards

FTDI Community   

162
Hi
FT260 is a HID class device and does not use the standard VCP/D2xx drivers. LibFT260 can be used (or raw HID class commands. See AN_394 and AN_395.
https://ftdichip.com/wp-content/uploads/2021/02/AN_394_User_Guide_for_FT260.pdf
https://ftdichip.com/wp-content/uploads/2020/07/AN_395_User_Guide_for_LibFT260.pdf

Regards
FTDI Community 

163
Hello,

Thanks for the information. I will check with our R&D team about this.

Best Regards,
FTDI Community

164
Discussion - Drivers / Re: missing DLL on Windows 11 for LibFT260 ?
« on: May 31, 2022, 02:16:21 PM »
Hi ffred,

You should test using the sample code provided in the library download before you start writing your own. Just to verify it is all working properly. Let me know how it goes.

Best Regards

FTDI Community

165
Discussion - Drivers / Re: missing DLL on Windows 11 for LibFT260 ?
« on: May 30, 2022, 04:00:00 PM »
hi ffred,

This is a known issue. You just have to copy the .dll to the same location as the .exe and then it should work fine.

Best Regards,

FTDI Community 

Pages: 1 ... 9 10 [11] 12 13 ... 60