]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
Implemented CMD_GET_FW_VERSION
authorJoel Holdsworth <redacted>
Tue, 10 Apr 2012 17:30:46 +0000 (18:30 +0100)
committerJoel Holdsworth <redacted>
Tue, 10 Apr 2012 17:30:56 +0000 (18:30 +0100)
fx2lafw.c
include/command.h
include/fx2lafw.h

index f69fcd5af6b068898c99861c05d593b0b502bfd1..dc54d0052a53245b0b6bf580598806b1b67e81fa 100644 (file)
--- a/fx2lafw.c
+++ b/fx2lafw.c
@@ -95,19 +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;
+
        case CMD_GET_FW_VERSION:
-               vendor_command = cmd;
+               send_fw_version();
                return TRUE;
-       default:
-               /* Unimplemented command. */
-               break;
        }
 
        return FALSE;
@@ -228,13 +239,6 @@ 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)
                                break;
index d238195d5041319078a85b6c28af13457673d86f..cc5f91c208314727726bc8e46feca45b906c7807 100644 (file)
 #define CMD_START_FLAGS_CLK_30MHZ      (0 << CMD_START_FLAGS_CLK_SRC_POS)
 #define CMD_START_FLAGS_CLK_48MHZ      (1 << CMD_START_FLAGS_CLK_SRC_POS)
 
+struct version_info
+{
+       uint8_t major;
+       uint8_t minor;
+};
+
 struct cmd_start_acquisition
 {
        uint8_t flags;
index fcafa62e630f0cd206fa7b3d8c0b0525bf17a503..b990e4e6b7aa3a22592df6d47e2dc553b4bae8ac 100644 (file)
@@ -21,3 +21,6 @@
 #include <autovector.h>
 
 #define SYNCDELAY() SYNCDELAY4
+
+#define FX2LAFW_VERSION_MAJOR  1
+#define FX2LAFW_VERSION_MINOR  0