Skip to content

Commit

Permalink
Add firmware version to metadata
Browse files Browse the repository at this point in the history
Return the firmware version to the Logic Sniffer extended SUMP protocol
metadata request.  Now you can see what version is loaded on your
device.
  • Loading branch information
gillham committed Feb 8, 2013
1 parent b1a43e5 commit 851b7e0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion logic_analyzer.ino
Expand Up @@ -78,7 +78,7 @@
* until after the trigger fires.
* Please try it out and report back.
*
* Release: v0.06 November 4, 2011.
* Release: v0.07 February 8, 2013.
*
*/

Expand Down Expand Up @@ -785,6 +785,13 @@ void get_metadata() {
Serial.write('0');
Serial.write((uint8_t)0x00);

/* firmware version */
Serial.write((uint8_t)0x02);
Serial.write('0');
Serial.write('.');
Serial.write('7');
Serial.write((uint8_t)0x00);

/* sample memory */
Serial.write((uint8_t)0x21);
Serial.write((uint8_t)0x00);
Expand Down

0 comments on commit 851b7e0

Please sign in to comment.