From 44c5a0d2e820e20c5ade37df9d5a1fde1b64acfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Martign=C3=A8ne?= Date: Sun, 21 Dec 2014 11:28:45 +0100 Subject: [PATCH] Remove EXPERIMENTAL safeguard for Teensy 3.1 --- src/board.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/board.c b/src/board.c index f86f909b..5568827f 100644 --- a/src/board.c +++ b/src/board.c @@ -91,22 +91,16 @@ const ty_board_model *ty_board_models[] = { &teensy_pp20_model, #endif &teensy_30_model, -#ifdef TY_EXPERIMENTAL &teensy_31_model, -#endif NULL }; static const struct firmware_signature signatures[] = { -#ifdef TY_EXPERIMENTAL {&teensy_pp10_model, {0x0C, 0x94, 0x00, 0x7E, 0xFF, 0xCF, 0xF8, 0x94}}, {&teensy_20_model, {0x0C, 0x94, 0x00, 0x3F, 0xFF, 0xCF, 0xF8, 0x94}}, {&teensy_pp20_model, {0x0C, 0x94, 0x00, 0xFE, 0xFF, 0xCF, 0xF8, 0x94}}, -#endif {&teensy_30_model, {0x38, 0x80, 0x04, 0x40, 0x82, 0x3F, 0x04, 0x00}}, -#ifdef TY_EXPERIMENTAL {&teensy_31_model, {0x30, 0x80, 0x04, 0x40, 0x82, 0x3F, 0x04, 0x00}}, -#endif {0} };