X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=fx2lafw.c;h=f0590b3fdc0ca4417b936d2f1b26707646207a1c;hb=a4d8b708a8cc30525c9148f77dc3d664a2d285f8;hp=f69fcd5af6b068898c99861c05d593b0b502bfd1;hpb=f7f91781e4d4d5543371d76bb295316a6655e535;p=sigrok-firmware-fx2lafw.git diff --git a/fx2lafw.c b/fx2lafw.c index f69fcd5a..f0590b3f 100644 --- a/fx2lafw.c +++ b/fx2lafw.c @@ -95,18 +95,30 @@ static void setup_endpoints(void) SYNCDELAY(); } +static void send_fw_version(void) +{ + /* Populate the buffer. */ + struct version_info *const vi = (struct version_info *)EP0BUF; + vi->major = FX2LAFW_VERSION_MAJOR; + vi->minor = FX2LAFW_VERSION_MINOR; + + /* Send the message. */ + EP0BCH = 0; + EP0BCL = sizeof(struct version_info); +} + BOOL handle_vendorcommand(BYTE cmd) { /* Protocol implementation */ switch (cmd) { case CMD_START: - /* There is data to receive - arm EP0 */ + vendor_command = cmd; EP0BCL = 0; + return TRUE; + break; case CMD_GET_FW_VERSION: - vendor_command = cmd; + send_fw_version(); return TRUE; - default: - /* Unimplemented command. */ break; } @@ -228,26 +240,18 @@ void fx2lafw_poll(void) if (vendor_command) { switch (vendor_command) { - case CMD_GET_FW_VERSION: - /* TODO */ - - /* Acknowledge the vendor command. */ - vendor_command = 0; - break; - case CMD_START: - if((EP0CS & bmEPBUSY) != 0) + if ((EP0CS & bmEPBUSY) != 0) break; - if(EP0BCL == 2) { + if (EP0BCL == 2) { gpif_acquisition_start( - (const struct cmd_start_acquisition*)EP0BUF); + (const struct cmd_start_acquisition *)EP0BUF); } /* Acknowledge the vendor command. */ vendor_command = 0; break; - default: /* Unimplemented command. */ vendor_command = 0;