From fcf504d9f0eb298cf2be8a05857e588f709ebdb3 Mon Sep 17 00:00:00 2001 From: hirsch Date: Sun, 31 Jul 2016 10:35:21 -0400 Subject: [PATCH] Correct model ids for v2 stomp boxes per Codesmart --- stomp_models.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stomp_models.cpp b/stomp_models.cpp index f700405..c3224be 100644 --- a/stomp_models.cpp +++ b/stomp_models.cpp @@ -10,9 +10,9 @@ const unsigned char fuzz_twah_id[] = { 0x1c, 0x00 }; const unsigned char simple_comp_id[] = { 0x88, 0x00 }; const unsigned char comp_id[] = { 0x07, 0x00 }; -const unsigned char range_boost_id[] = { 0x03, 0x00 }; +const unsigned char range_boost_id[] = { 0x03, 0x01 }; const unsigned char green_box_id[] = { 0xba, 0x00 }; -const unsigned char orange_box_id[] = { 0x10, 0x00 }; -const unsigned char black_box_id[] = { 0x11, 0x00 }; -const unsigned char big_fuzz_id[] = { 0x0f, 0x00 }; +const unsigned char orange_box_id[] = { 0x10, 0x01 }; +const unsigned char black_box_id[] = { 0x11, 0x01 }; +const unsigned char big_fuzz_id[] = { 0x0f, 0x01 };