Browse Source

[version.sh]add BT-6711

balbekova 4 years ago
parent
commit
37f42d1cd8
1 changed files with 3 additions and 0 deletions
  1. 3 0
      projects/gcc/tools/version.sh

+ 3 - 0
projects/gcc/tools/version.sh

@@ -22,6 +22,9 @@ SRC=$'#define HARDWARE_BT6709_MTS 1\r\n#include <stdio.h>\r\n#include "common_co
 elif [ "$1" = "bt6710" ];
 then
 SRC=$'#define HARDWARE_BT6710 1\r\n#include <stdio.h>\r\n#include "common_config.h"\r\n'
+elif [ "$1" = "bt6711" ];
+then
+SRC=$'#define HARDWARE_BT6711 1\r\n#include <stdio.h>\r\n#include "common_config.h"\r\n'
 fi
 SRC+=$'int main(int argc, char *argv[]) {printf("%s", VERSION);}'
 echo "$SRC" > $BIN.c