Merge pull request #390 from mikeller/updated_board_list

Updated boards list with new targets.
10.3.x-maintenance
borisbstyle 2017-01-16 16:34:30 +01:00 committed by GitHub
commit 76fb90bfd3
1 changed files with 17 additions and 5 deletions

View File

@ -1,11 +1,11 @@
'use strict';
// This list has been extracted from the firmware source with:
// grep TARGET_BOARD_IDENTIFIER src/main/target/*/target.h | sed -n "s/^src\/main\/target\/\([^\/]*\).*#define TARGET_BOARD_IDENTIFIER \"\([^\"]*\).*$/{name: '\1', identifier: '\2', vcp: false},/p" | sort
// grep TARGET_BOARD_IDENTIFIER src/main/target/*/target.h | sed -n "s/^src\/main\/target\/\([^\/]*\).*#define TARGET_BOARD_IDENTIFIER \"\([^\"]*\).*$/ {name: '\1', identifier: '\2', vcp: true},/p" | sort
// and then manually setting vcp to true for boards that use VCP
// Also, please note that the targets in this list are ordered in the order they are returned by the above command. Please do not reorder to avoid churn.
var BOARD_DEFINITIONS = [
{name: 'AIORACERF3', identifier: 'ARF3', vcp: true},
{name: 'AIR32', identifier: 'AR32', vcp: true},
{name: 'AIRHEROF3', identifier: 'AIR3', vcp: false},
{name: 'ALIENFLIGHTF1', identifier: 'AFF1', vcp: false},
@ -20,7 +20,9 @@ var BOARD_DEFINITIONS = [
{name: 'COLIBRI', identifier: 'COLI', vcp: true},
{name: 'COLIBRI_RACE', identifier: 'CLBR', vcp: true},
{name: 'DOGE', identifier: 'DOGE', vcp: true},
{name: 'ELLE0', identifier: 'ELL0', vcp: true},
{name: 'F4BY', identifier: 'F4BY', vcp: true},
{name: 'FISHDRONEF4', identifier: 'FDF4', vcp: true},
{name: 'FURYF3', identifier: 'FYF3', vcp: true},
{name: 'FURYF4', identifier: 'FYF4', vcp: true},
{name: 'FURYF7', identifier: 'FYF7', vcp: true},
@ -29,6 +31,7 @@ var BOARD_DEFINITIONS = [
{name: 'ISHAPEDF3', identifier: 'ISF3', vcp: false},
{name: 'KAKUTEF4', identifier: 'KTV1', vcp: true},
{name: 'KISSFC', identifier: 'KISS', vcp: true},
{name: 'KIWIF4', identifier: 'KIWI', vcp: true},
{name: 'LUXV2_RACE', identifier: 'LUXR', vcp: true},
{name: 'LUX_RACE', identifier: 'LUX', vcp: true},
{name: 'MICROSCISKY', identifier: 'MSKY', vcp: false},
@ -37,25 +40,34 @@ var BOARD_DEFINITIONS = [
{name: 'AFROMINI', identifier: 'AFMN', vcp: false},
{name: 'NAZE', identifier: 'AFNA', vcp: false},
{name: 'BEEBRAIN', identifier: 'BEBR', vcp: false},
{name: 'NERO', identifier: 'NERO', vcp: true},
{name: 'NUCLEOF7', identifier: 'NUC7', vcp: true},
{name: 'OMNIBUSF4', identifier: 'OBF4', vcp: true},
{name: 'OMNIBUSF4SD', identifier: 'OBSD', vcp: true},
{name: 'OMNIBUS', identifier: 'OMNI', vcp: true},
{name: 'PIKOBLX', identifier: 'PIKO', vcp: true},
{name: 'RACEBASE', identifier: 'RBFC', vcp: false},
{name: 'RCEXPLORERF3', identifier: 'REF3', vcp: true},
{name: 'AIRBOTF4', identifier: 'AIR4', vcp: true},
{name: 'REVOLT', identifier: 'RVLT', vcp: true},
{name: 'PODIUMF4', identifier: 'PODI', vcp: true},
{name: 'REVO', identifier: 'REVO', vcp: true},
{name: 'REVOLT', identifier: 'RVLT', vcp: true},
{name: 'SOULF4', identifier: 'SOUL', vcp: true},
{name: 'REVONANO', identifier: 'REVN', vcp: true},
{name: 'RMDO', identifier: 'RMDO', vcp: false},
{name: 'RG_SSD_F3', identifier: 'RGF3', vcp: true},
{name: 'SINGULARITY', identifier: 'SING', vcp: true},
{name: 'SIRINFPV', identifier: 'SIRF', vcp: true},
{name: 'SOULF4', identifier: 'SOUL', vcp: true},
{name: 'SPARKY2', identifier: 'SPK2', vcp: true},
{name: 'SPARKY', identifier: 'SPKY', vcp: true},
{name: 'SPRACINGF3EVO', identifier: 'SPEV', vcp: true},
{name: 'AIORACERF3', identifier: 'ARF3', vcp: true},
{name: 'RMDO', identifier: 'RMDO', vcp: false},
{name: 'SPRACINGF3', identifier: 'SRF3', vcp: false},
{name: 'SPRACINGF3MINI', identifier: 'SRFM', vcp: true},
{name: 'TINYBEEF3', identifier: 'TBF3', vcp: true},
{name: 'SPRACINGF3NEO', identifier: 'SP3N', vcp: true},
{name: 'STM32F3DISCOVERY', identifier: 'SDF3', vcp: true},
{name: 'TINYFISH', identifier: 'TFSH', vcp: true},
{name: 'VRRACE', identifier: 'VRRA', vcp: true},
{name: 'X_RACERSPI', identifier: 'XRC3', vcp: false},
{name: 'YUPIF4', identifier: 'YPF4', vcp: true},