Add missing shift for PORTD trigger.

This commit is contained in:
Andrew Gillham
2013-06-22 11:30:39 -07:00
parent dc3d85abf7
commit 1f7eb0aecd

View File

@@ -301,7 +301,11 @@ void loop()
* we can just use it directly as our trigger mask. * we can just use it directly as our trigger mask.
*/ */
getCmd(); getCmd();
#ifdef USE_PORTD
trigger = cmdBytes[0] << 2;
#else
trigger = cmdBytes[0]; trigger = cmdBytes[0];
#endif
break; break;
case SUMP_TRIGGER_VALUES: case SUMP_TRIGGER_VALUES:
/* /*