HomeSort by relevance Sort by last modified time
    Searched full:fx_type (Results 1 - 3 of 3) sorted by null

  /external/libusb/examples/
fxload.c 91 int fx_type = FX_TYPE_UNDEFINED, img_type[ARRAYSIZE(path)]; local
165 fx_type = i;
213 ((type != NULL) && (device_id == NULL) && (device_path == NULL) && (fx_type == known_device[j].type)) ) {
214 fx_type = known_device[j].type;
262 logerror("microcontroller type: %s\n", fx_name[fx_type]);
288 status = ezusb_load_ram(device, path[FIRMWARE], fx_type, img_type[FIRMWARE], 0);
293 status = ezusb_load_ram(device, path[LOADER], fx_type, img_type[LOADER], 0);
298 status = ezusb_load_ram(device, path[FIRMWARE], fx_type, img_type[FIRMWARE], 1);
ezusb.h 97 const char *path, int fx_type, int img_type, int stage);
111 const char *path, int fx_type, int img_type, int config);
ezusb.c 718 int ezusb_load_ram(libusb_device_handle *device, const char *path, int fx_type, int img_type, int stage)
728 if (fx_type == FX_TYPE_FX3)
740 || (((fx_type == FX_TYPE_FX2LP) || (fx_type == FX_TYPE_FX2)) && (iic_header[0] != 0xC2))
741 || ((fx_type == FX_TYPE_AN21) && (iic_header[0] != 0xB2))
742 || ((fx_type == FX_TYPE_FX1) && (iic_header[0] != 0xB6)) ) {
750 switch(fx_type) {

Completed in 387 milliseconds