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;
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;
#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;