diff options
author | Keith Packard <keithp@keithp.com> | 2014-09-09 09:09:22 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-09-09 09:09:22 -0700 |
commit | 08a82617c53718055d97df4fa60f3e5051d65383 (patch) | |
tree | f969a275961f022eca7894fa0a8b71f9c9065ad8 | |
parent | 9d3ab4c78f79d659ce800def77bc441c95fa15be (diff) |
altos/easymega: Set USB PID for EasyMega to 0x0028
It was using 0x0023, which is for TeleMega. 0x0028 is what's listed in
usbvidpid.h.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/easymega-v1.0/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/easymega-v1.0/Makefile b/src/easymega-v1.0/Makefile index 708ce1c6..c3b360b4 100644 --- a/src/easymega-v1.0/Makefile +++ b/src/easymega-v1.0/Makefile @@ -109,7 +109,7 @@ ALTOS_SRC = \ PRODUCT=EasyMega-v1.0 PRODUCT_DEF=-DEASYMEGA -IDPRODUCT=0x0023 +IDPRODUCT=0x0028 CFLAGS = $(PRODUCT_DEF) $(STM_CFLAGS) $(PROFILE_DEF) $(SAMPLE_PROFILE_DEF) $(STACK_GUARD_DEF) -Os -g |