1d5814ca7SMatthias Ringwald# 237da03daSMatthias Ringwald# Makefile to download and convert TI's CC256x Service Pack .bts files from 3d5814ca7SMatthias Ringwald# http://processors.wiki.ti.com/index.php/CC256x_Downloads 4d5814ca7SMatthias Ringwald# 537da03daSMatthias Ringwald# Service Packs for CC256xB v1.5 and CC256xC v1.0 downloaded from BlueKitchen company website 637da03daSMatthias Ringwald# https://e2e.ti.com/support/wireless_connectivity/bluetooth_cc256x/f/660/p/560523/2056007#2056007 737da03daSMatthias Ringwald 815218b79SMatthias RingwaldTI_GIT_REPO_URL = https://git.ti.com/cgit/ti-bt/service-packs/blobs/raw/a027ae390d8790e56e1c78136c78fe6537470e91 937da03daSMatthias RingwaldBLUEKITCHEN_URL = https://bluekitchen-gmbh.com/files/ 10edc52946SMatthias RingwaldCONVERSION_SCRIPT=$(BTSTACK_ROOT)/chipset/cc256x/convert_bts_init_scripts.py 11d5814ca7SMatthias Ringwald 1237da03daSMatthias Ringwald 1337da03daSMatthias Ringwald# First generation CC2560 - AKA TIInit_6.2.31.bts 1437da03daSMatthias Ringwald 1537da03daSMatthias Ringwald# v2.44 - file part of .zip archive 16a3fe55ccSMatthias Ringwald 17a3fe55ccSMatthias RingwaldCC2560_BT_SP_BTS.zip: 1837da03daSMatthias Ringwald @echo "Downloading $@" 198c3fe452SMatthias Ringwald @curl -sS -O https://processors.wiki.ti.com/images/d/da/CC2560_BT_SP_BTS.zip 20a3fe55ccSMatthias Ringwald 21a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560_2.44.bts: CC2560_BT_SP_BTS.zip 2237da03daSMatthias Ringwald @echo "Extracting $@" 2337da03daSMatthias Ringwald @unzip -q -j -o CC2560_BT_SP_BTS.zip CC2560_BT_SP_BTS/bluetooth_init_cc2560_2.44.bts 24a3fe55ccSMatthias Ringwald 2537da03daSMatthias Ringwald# Second generation CC2560A and CC2564 - AKA TIInit_6.6.15.bts 26a3fe55ccSMatthias Ringwald 2737da03daSMatthias Ringwald# v2.14 - files part of .zip archive 28a3fe55ccSMatthias Ringwald 29a3fe55ccSMatthias RingwaldCC2560A_BT_SP_BTS.zip: 3037da03daSMatthias Ringwald @echo "Downloading $@" 318c3fe452SMatthias Ringwald @curl -sS -O https://processors.wiki.ti.com/images/e/e7/CC2560A_BT_SP_BTS.zip 32a3fe55ccSMatthias Ringwald 33a3fe55ccSMatthias RingwaldCC2564_BT_BLE_SP_BTS.zip: 3437da03daSMatthias Ringwald @echo "Downloading $@" 358c3fe452SMatthias Ringwald @curl -sS -O https://processors.wiki.ti.com/images/1/1e/CC2564_BT_BLE_SP_BTS.zip 36a3fe55ccSMatthias Ringwald 37a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560A_2.14.bts: CC2560A_BT_SP_BTS.zip 3837da03daSMatthias Ringwald @echo "Extracting $@" 3937da03daSMatthias Ringwald @unzip -q -j -o CC2560A_BT_SP_BTS.zip CC2560A_BT_SP_BTS/bluetooth_init_cc2560A_2.14.bts 40a3fe55ccSMatthias Ringwald 41a3fe55ccSMatthias Ringwaldbluetooth_init_cc2564_2.14.bts: CC2564_BT_BLE_SP_BTS.zip 4237da03daSMatthias Ringwald @echo "Extracting $@" 4337da03daSMatthias Ringwald @unzip -q -j -o CC2564_BT_BLE_SP_BTS.zip CC2564_BT_BLE_SP_BTS/bluetooth_init_cc2564_2.14.bts 44a3fe55ccSMatthias Ringwald 452d0fc1beSMatthias Ringwald# Third generation CC256xB - AKA TIInit_6.7.16.bts 46a3fe55ccSMatthias Ringwald 4737da03daSMatthias Ringwald# v1.2 - versioned files TI Git Repo 48d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts: 4937da03daSMatthias Ringwald @echo "Downloading $@" 5006ee659aSMatthias Ringwald @curl -sS -O $(TI_GIT_REPO_URL)/bluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts 51d5814ca7SMatthias Ringwald 52d5814ca7SMatthias Ringwaldbluetooth_init_cc2564B_1.2_BT_Spec_4.1.bts: 5337da03daSMatthias Ringwald @echo "Downloading $@" 5406ee659aSMatthias Ringwald @curl -sS -O $(TI_GIT_REPO_URL)/bluetooth_init_cc2564B_1.2_BT_Spec_4.1.bts 55d5814ca7SMatthias Ringwald 56d5814ca7SMatthias RingwaldBLE_init_cc2564B_1.2.bts: 5737da03daSMatthias Ringwald @echo "Downloading $@" 5806ee659aSMatthias Ringwald @curl -sS -O $(TI_GIT_REPO_URL)/BLE_init_cc2564B_1.2.bts 59d5814ca7SMatthias Ringwald 6037da03daSMatthias Ringwald# v1.4 - versioned files TI Git Repo 61edc52946SMatthias RingwaldTIInit_6.7.16_bt_spec_4.1.bts: 6237da03daSMatthias Ringwald @echo "Downloading $@" 6306ee659aSMatthias Ringwald @curl -sS -O https://git.ti.com/ti-bt/service-packs/blobs/raw/54f5c151dacc608b19ab2ce4c30e27a3983048b2/initscripts/TIInit_6.7.16_bt_spec_4.1.bts 64edc52946SMatthias Ringwald 65edc52946SMatthias RingwaldTIInit_6.7.16_ble_add-on.bts: 6637da03daSMatthias Ringwald @echo "Downloading $@" 6706ee659aSMatthias Ringwald @curl -sS -O https://git.ti.com/ti-bt/service-packs/blobs/raw/89c8db14929f10d75627b132690432cd71f5f54f/initscripts/TIInit_6.7.16_ble_add-on.bts 68edc52946SMatthias Ringwald 6937da03daSMatthias Ringwald# v1.5 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xb-bt-sp 7037da03daSMatthias Ringwaldcc256x_bt_sp_v1.5.zip: 7137da03daSMatthias Ringwald echo "Downloading $@" 7206ee659aSMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256x_bt_sp_v1.5.zip 73638e16f3SMatthias Ringwald 742d0fc1beSMatthias Ringwaldcc256x_bt_sp_v1.5/initscripts-TIInit_6.7.16_bt_spec_4.1.bts: cc256x_bt_sp_v1.5.zip 7537da03daSMatthias Ringwald @echo "Extracting $@" 762d0fc1beSMatthias Ringwald @mkdir -p cc256x_bt_sp_v1.5 772d0fc1beSMatthias Ringwald @unzip -q -j -o cc256x_bt_sp_v1.5.zip -d cc256x_bt_sp_v1.5 CC256X_BT_SP/v1.5/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 78638e16f3SMatthias Ringwald 792d0fc1beSMatthias Ringwaldcc256x_bt_sp_v1.5/initscripts-TIInit_6.7.16_ble_add-on.bts: cc256x_bt_sp_v1.5.zip 8037da03daSMatthias Ringwald @echo "Extracting $@" 812d0fc1beSMatthias Ringwald @mkdir -p cc256x_bt_sp_v1.5 822d0fc1beSMatthias Ringwald @unzip -q -j -o cc256x_bt_sp_v1.5.zip -d cc256x_bt_sp_v1.5 CC256X_BT_SP/v1.5/initscripts-TIInit_6.7.16_ble_add-on.bts 832d0fc1beSMatthias Ringwald 842d0fc1beSMatthias Ringwald# v1.6 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xb-bt-sp 852d0fc1beSMatthias Ringwaldcc256xb_bt_sp_v1.6.zip: 862d0fc1beSMatthias Ringwald echo "Downloading $@" 872d0fc1beSMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xb_bt_sp_v1.6.zip 882d0fc1beSMatthias Ringwald 892d0fc1beSMatthias Ringwaldcc256xb_bt_sp_v1.6/initscripts-TIInit_6.7.16_bt_spec_4.1.bts: cc256xb_bt_sp_v1.6.zip 902d0fc1beSMatthias Ringwald @echo "Extracting $@" 912d0fc1beSMatthias Ringwald @mkdir -p cc256xb_bt_sp_v1.6 922d0fc1beSMatthias Ringwald @unzip -q -j -o cc256xb_bt_sp_v1.6.zip -d cc256xb_bt_sp_v1.6 CC256XB_BT_SP/v1.6/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 932d0fc1beSMatthias Ringwald 942d0fc1beSMatthias Ringwaldcc256xb_bt_sp_v1.6/initscripts-TIInit_6.7.16_ble_add-on.bts: cc256xb_bt_sp_v1.6.zip 952d0fc1beSMatthias Ringwald @echo "Extracting $@" 962d0fc1beSMatthias Ringwald @mkdir -p cc256xb_bt_sp_v1.6 972d0fc1beSMatthias Ringwald @unzip -q -j -o cc256xb_bt_sp_v1.6.zip -d cc256xb_bt_sp_v1.6 CC256XB_BT_SP/v1.6/initscripts-TIInit_6.7.16_ble_add-on.bts 98638e16f3SMatthias Ringwald 993d919a60SMatthias Ringwald# v1.7 - not available, please use v1.8 or newer 1003d919a60SMatthias Ringwald 1013d919a60SMatthias Ringwald# v1.8 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xb-bt-sp 1023d919a60SMatthias Ringwaldcc256xb_bt_sp_v1.8.zip: 1033d919a60SMatthias Ringwald echo "Downloading $@" 1043d919a60SMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xb_bt_sp_v1.8.zip 1053d919a60SMatthias Ringwald 1063d919a60SMatthias Ringwaldcc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_bt_spec_4.1.bts: cc256xb_bt_sp_v1.8.zip 1073d919a60SMatthias Ringwald @echo "Extracting $@" 1083d919a60SMatthias Ringwald @mkdir -p cc256xb_bt_sp_v1.8 1093d919a60SMatthias Ringwald @unzip -q -j -o cc256xb_bt_sp_v1.8.zip -d cc256xb_bt_sp_v1.8 CC256XB_BT_SP/v1.8/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 1103d919a60SMatthias Ringwald 1113d919a60SMatthias Ringwaldcc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_ble_add-on.bts: cc256xb_bt_sp_v1.8.zip 1123d919a60SMatthias Ringwald @echo "Extracting $@" 1133d919a60SMatthias Ringwald @mkdir -p cc256xb_bt_sp_v1.8 1143d919a60SMatthias Ringwald @unzip -q -j -o cc256xb_bt_sp_v1.8.zip -d cc256xb_bt_sp_v1.8 CC256XB_BT_SP/v1.8/initscripts-TIInit_6.7.16_ble_add-on.bts 1153d919a60SMatthias Ringwald 116*6846b044SMatthias Ringwaldcc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_avpr_add-on.bts: cc256xb_bt_sp_v1.8.zip 117*6846b044SMatthias Ringwald @echo "Extracting $@" 118*6846b044SMatthias Ringwald @mkdir -p cc256xb_bt_sp_v1.8 119*6846b044SMatthias Ringwald @unzip -q -j -o cc256xb_bt_sp_v1.8.zip -d cc256xb_bt_sp_v1.8 CC256XB_BT_SP/v1.8/initscripts-TIInit_6.7.16_avpr_add-on.bts 120638e16f3SMatthias Ringwald 12137da03daSMatthias Ringwald# Fourth generation CC256xC - TIInit_6.12.26.bts 12237da03daSMatthias Ringwald 12337da03daSMatthias Ringwald# v1.0 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xc-bt-sp 12437da03daSMatthias Ringwaldcc256xc_bt_sp_v1.0.zip: 12537da03daSMatthias Ringwald @echo "Downloading $@" 12606ee659aSMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xc_bt_sp_v1.0.zip 12737da03daSMatthias Ringwald 1287830d3e6SMatthias Ringwaldinitscripts-TIInit_6.12.26_v1.0.bts: cc256xc_bt_sp_v1.0.zip 12937da03daSMatthias Ringwald @echo "Extracting $@" 1307830d3e6SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.0.zip CC256XC_BT_SP/v1.0/initscripts-TIInit_6.12.26.bts > $@ 13137da03daSMatthias Ringwald 1327830d3e6SMatthias Ringwaldinitscripts-TIInit_6.12.26_ble_add-on_v1.0.bts: cc256xc_bt_sp_v1.0.zip 13337da03daSMatthias Ringwald @echo "Extracting $@" 1347830d3e6SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.0.zip CC256XC_BT_SP/v1.0/initscripts-TIInit_6.12.26_ble_add-on.bts > $@ 13537da03daSMatthias Ringwald 13614cca92bSMatthias Ringwald# v1.1 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xc-bt-sp 13714cca92bSMatthias Ringwaldcc256xc_bt_sp_v1.1.zip: 13814cca92bSMatthias Ringwald @echo "Downloading $@" 13914cca92bSMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xc_bt_sp_v1.1.zip 14014cca92bSMatthias Ringwald 14114cca92bSMatthias Ringwaldinitscripts-TIInit_6.12.26_v1.1.bts: cc256xc_bt_sp_v1.1.zip 14214cca92bSMatthias Ringwald @echo "Extracting $@" 14314cca92bSMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.1.zip CC256XC_BT_SP/v1.1/initscripts-TIInit_6.12.26.bts > $@ 14414cca92bSMatthias Ringwald 14514cca92bSMatthias Ringwaldinitscripts-TIInit_6.12.26_ble_add-on_v1.1.bts: cc256xc_bt_sp_v1.1.zip 14614cca92bSMatthias Ringwald @echo "Extracting $@" 14714cca92bSMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.1.zip CC256XC_BT_SP/v1.1/initscripts-TIInit_6.12.26_ble_add-on.bts > $@ 14814cca92bSMatthias Ringwald 1490e0e98b2SMatthias Ringwald# v1.2 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xc-bt-sp 1503d919a60SMatthias Ringwaldcc256xc_bt_sp_v1.2.zip: 1513d919a60SMatthias Ringwald @echo "Downloading $@" 1523d919a60SMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xc_bt_sp_v1.2.zip 1533d919a60SMatthias Ringwald 1543d919a60SMatthias Ringwaldinitscripts-TIInit_6.12.26_v1.2.bts: cc256xc_bt_sp_v1.2.zip 1553d919a60SMatthias Ringwald @echo "Extracting $@" 1563d919a60SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.2.zip CC256XC_BT_SP/v1.2/initscripts-TIInit_6.12.26.bts > $@ 1573d919a60SMatthias Ringwald 1583d919a60SMatthias Ringwaldinitscripts-TIInit_6.12.26_ble_add-on_v1.2.bts: cc256xc_bt_sp_v1.2.zip 1593d919a60SMatthias Ringwald @echo "Extracting $@" 1603d919a60SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.2.zip CC256XC_BT_SP/v1.2/initscripts-TIInit_6.12.26_ble_add-on.bts > $@ 16137da03daSMatthias Ringwald 1620e0e98b2SMatthias Ringwald# v1.3 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xc-bt-sp 1630e0e98b2SMatthias Ringwaldcc256xc_bt_sp_v1.3.zip: 1640e0e98b2SMatthias Ringwald @echo "Downloading $@" 1650e0e98b2SMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xc_bt_sp_v1.3.zip 1660e0e98b2SMatthias Ringwald 1670e0e98b2SMatthias Ringwaldinitscripts-TIInit_6.12.26_v1.3.bts: cc256xc_bt_sp_v1.3.zip 1680e0e98b2SMatthias Ringwald @echo "Extracting $@" 1690e0e98b2SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.3.zip CC256XC_BT_SP/v1.3/initscripts-TIInit_6.12.26.bts > $@ 1700e0e98b2SMatthias Ringwald 1710e0e98b2SMatthias Ringwaldinitscripts-TIInit_6.12.26_ble_add-on_v1.3.bts: cc256xc_bt_sp_v1.3.zip 1720e0e98b2SMatthias Ringwald @echo "Extracting $@" 1730e0e98b2SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.3.zip CC256XC_BT_SP/v1.3/initscripts-TIInit_6.12.26_ble_add-on.bts > $@ 1740e0e98b2SMatthias Ringwald 175f2eb0907SMatthias Ringwald# v1.4 - unversioned files from BlueKitchen website, original: http://www.ti.com/tool/cc256xc-bt-sp 176f2eb0907SMatthias Ringwaldcc256xc_bt_sp_v1.4.zip: 177f2eb0907SMatthias Ringwald @echo "Downloading $@" 178f2eb0907SMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/cc256xc_bt_sp_v1.4.zip 179f2eb0907SMatthias Ringwald 180f2eb0907SMatthias Ringwaldinitscripts-TIInit_6.12.26_v1.4.bts: cc256xc_bt_sp_v1.4.zip 181f2eb0907SMatthias Ringwald @echo "Extracting $@" 182f2eb0907SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.4.zip CC256XC_BT_SP/v1.4/initscripts-TIInit_6.12.26.bts > $@ 183f2eb0907SMatthias Ringwald 184f2eb0907SMatthias Ringwaldinitscripts-TIInit_6.12.26_ble_add-on_v1.4.bts: cc256xc_bt_sp_v1.4.zip 185f2eb0907SMatthias Ringwald @echo "Extracting $@" 186f2eb0907SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.4.zip CC256XC_BT_SP/v1.4/initscripts-TIInit_6.12.26_ble_add-on.bts > $@ 187f2eb0907SMatthias Ringwald 18815218b79SMatthias Ringwaldinitscripts-TIInit_6.12.26_avpr_add-on_v1.4.bts: cc256xc_bt_sp_v1.4.zip 18915218b79SMatthias Ringwald @echo "Extracting $@" 19015218b79SMatthias Ringwald @unzip -q -p cc256xc_bt_sp_v1.4.zip CC256XC_BT_SP/v1.4/initscripts-TIInit_6.12.26_avpr_add-on.bts > $@ 191f2eb0907SMatthias Ringwald 19237da03daSMatthias Ringwald# Various scripts for WL chipsets 19337da03daSMatthias Ringwald 19445999011SMatthias Ringwald# V4.2 from BlueKitchen website, original: http://www.ti.com/tool/wl18xx-bt-sp 195d5814ca7SMatthias RingwaldTIInit_11.8.32.bts: 19637da03daSMatthias Ringwald @echo "Downloading $@" 19745999011SMatthias Ringwald @curl -sS -O $(BLUEKITCHEN_URL)/TIInit_11.8.32.bts 198d5814ca7SMatthias Ringwald 199d5814ca7SMatthias RingwaldTIInit_12.10.28.bts: 20037da03daSMatthias Ringwald @echo "Downloading $@" 20106ee659aSMatthias Ringwald @curl -sS -O $(TI_GIT_REPO_URL)/TIInit_12.10.28.bts 202d5814ca7SMatthias Ringwald 203d5814ca7SMatthias RingwaldTIInit_12.8.32.bts: 20437da03daSMatthias Ringwald @echo "Downloading $@" 20506ee659aSMatthias Ringwald @curl -sS -O $(TI_GIT_REPO_URL)/TIInit_12.8.32.bts 20637da03daSMatthias Ringwald 207d5814ca7SMatthias Ringwald 208638e16f3SMatthias Ringwald 20906ee659aSMatthias Ringwald# convert to .c files based on main file and option add-on 21006ee659aSMatthias Ringwald 211a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560_2.44.c: bluetooth_init_cc2560_2.44.bts 21206ee659aSMatthias Ringwald @echo "Creating $@" 21306ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 214a3fe55ccSMatthias Ringwald 215a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560A_2.14.c: bluetooth_init_cc2560A_2.14.bts 21606ee659aSMatthias Ringwald @echo "Creating $@" 21706ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 218a3fe55ccSMatthias Ringwald 2190e1ffed0SMatthias Ringwaldbluetooth_init_cc2567_2.4.c: CC2567_BT_ANT_Service_Pack_2.4.bts 2200e1ffed0SMatthias Ringwald @echo "Creating $@" 2210e1ffed0SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2220e1ffed0SMatthias Ringwald 2230e1ffed0SMatthias Ringwaldbluetooth_init_cc2567_2.8.c: CC256x_BT_Service_Pack_2.8_ANT_1.16.bts 2240e1ffed0SMatthias Ringwald @echo "Creating $@" 2250e1ffed0SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2260e1ffed0SMatthias Ringwald 227a3fe55ccSMatthias Ringwaldbluetooth_init_cc2564_2.14.c: bluetooth_init_cc2564_2.14.bts 22806ee659aSMatthias Ringwald @echo "Creating $@" 22906ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 230a3fe55ccSMatthias Ringwald 231d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.1.c: bluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts 23206ee659aSMatthias Ringwald @echo "Creating $@" 23306ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 234d5814ca7SMatthias Ringwald 235d5814ca7SMatthias Ringwaldbluetooth_init_cc2564B_1.2_BT_Spec_4.1.c: bluetooth_init_cc2564B_1.2_BT_Spec_4.1.bts BLE_init_cc2564B_1.2.bts 23606ee659aSMatthias Ringwald @echo "Creating $@" 23706ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 238d5814ca7SMatthias Ringwald 239edc52946SMatthias Ringwaldbluetooth_init_cc2560B_1.4_BT_Spec_4.1.c: TIInit_6.7.16_bt_spec_4.1.bts 24006ee659aSMatthias Ringwald @echo "Creating $@" 24106ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 242edc52946SMatthias Ringwald 243edc52946SMatthias Ringwaldbluetooth_init_cc2564B_1.4_BT_Spec_4.1.c: TIInit_6.7.16_bt_spec_4.1.bts TIInit_6.7.16_ble_add-on.bts 24406ee659aSMatthias Ringwald @echo "Creating $@" 24506ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 246a3fe55ccSMatthias Ringwald 2472d0fc1beSMatthias Ringwaldbluetooth_init_cc2560B_1.5_BT_Spec_4.1.c: cc256x_bt_sp_v1.5/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 24806ee659aSMatthias Ringwald @echo "Creating $@" 24906ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 250638e16f3SMatthias Ringwald 2512d0fc1beSMatthias Ringwaldbluetooth_init_cc2564B_1.5_BT_Spec_4.1.c: cc256x_bt_sp_v1.5/initscripts-TIInit_6.7.16_bt_spec_4.1.bts cc256x_bt_sp_v1.5/initscripts-TIInit_6.7.16_ble_add-on.bts 2522d0fc1beSMatthias Ringwald @echo "Creating $@" 2532d0fc1beSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2542d0fc1beSMatthias Ringwald 2552d0fc1beSMatthias Ringwaldbluetooth_init_cc2560B_1.6_BT_Spec_4.1.c: cc256xb_bt_sp_v1.6/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 2562d0fc1beSMatthias Ringwald @echo "Creating $@" 2572d0fc1beSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2582d0fc1beSMatthias Ringwald 2592d0fc1beSMatthias Ringwaldbluetooth_init_cc2564B_1.6_BT_Spec_4.1.c: cc256xb_bt_sp_v1.6/initscripts-TIInit_6.7.16_bt_spec_4.1.bts cc256xb_bt_sp_v1.6/initscripts-TIInit_6.7.16_ble_add-on.bts 26006ee659aSMatthias Ringwald @echo "Creating $@" 26106ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 262638e16f3SMatthias Ringwald 2633d919a60SMatthias Ringwaldbluetooth_init_cc2560B_1.8_BT_Spec_4.1.c: cc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_bt_spec_4.1.bts 2643d919a60SMatthias Ringwald @echo "Creating $@" 2653d919a60SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2663d919a60SMatthias Ringwald 267*6846b044SMatthias Ringwaldbluetooth_init_cc2560B_avpr_1.8_BT_Spec_4.1.c: cc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_bt_spec_4.1.bts cc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_avpr_add-on.bts 268*6846b044SMatthias Ringwald 269*6846b044SMatthias Ringwald @echo "Creating $@" 270*6846b044SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 271*6846b044SMatthias Ringwald 2723d919a60SMatthias Ringwaldbluetooth_init_cc2564B_1.8_BT_Spec_4.1.c: cc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_bt_spec_4.1.bts cc256xb_bt_sp_v1.8/initscripts-TIInit_6.7.16_ble_add-on.bts 2733d919a60SMatthias Ringwald @echo "Creating $@" 2743d919a60SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2753d919a60SMatthias Ringwald 2767830d3e6SMatthias Ringwaldbluetooth_init_cc2560C_1.0.c: initscripts-TIInit_6.12.26_v1.0.bts 27706ee659aSMatthias Ringwald @echo "Creating $@" 27806ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 279638e16f3SMatthias Ringwald 2807830d3e6SMatthias Ringwaldbluetooth_init_cc2564C_1.0.c: initscripts-TIInit_6.12.26_v1.0.bts initscripts-TIInit_6.12.26_ble_add-on_v1.0.bts 28106ee659aSMatthias Ringwald @echo "Creating $@" 28206ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 283638e16f3SMatthias Ringwald 28414cca92bSMatthias Ringwaldbluetooth_init_cc2560C_1.1.c: initscripts-TIInit_6.12.26_v1.1.bts 28514cca92bSMatthias Ringwald @echo "Creating $@" 28614cca92bSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 28714cca92bSMatthias Ringwald 28814cca92bSMatthias Ringwaldbluetooth_init_cc2564C_1.1.c: initscripts-TIInit_6.12.26_v1.1.bts initscripts-TIInit_6.12.26_ble_add-on_v1.1.bts 28914cca92bSMatthias Ringwald @echo "Creating $@" 29014cca92bSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 29114cca92bSMatthias Ringwald 2923d919a60SMatthias Ringwaldbluetooth_init_cc2560C_1.2.c: initscripts-TIInit_6.12.26_v1.2.bts 2933d919a60SMatthias Ringwald @echo "Creating $@" 2943d919a60SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2953d919a60SMatthias Ringwald 2963d919a60SMatthias Ringwaldbluetooth_init_cc2564C_1.2.c: initscripts-TIInit_6.12.26_v1.2.bts initscripts-TIInit_6.12.26_ble_add-on_v1.2.bts 2973d919a60SMatthias Ringwald @echo "Creating $@" 2983d919a60SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 2993d919a60SMatthias Ringwald 3000e0e98b2SMatthias Ringwaldbluetooth_init_cc2560C_1.3.c: initscripts-TIInit_6.12.26_v1.3.bts 3010e0e98b2SMatthias Ringwald @echo "Creating $@" 3020e0e98b2SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 3030e0e98b2SMatthias Ringwald 3040e0e98b2SMatthias Ringwaldbluetooth_init_cc2564C_1.3.c: initscripts-TIInit_6.12.26_v1.3.bts initscripts-TIInit_6.12.26_ble_add-on_v1.3.bts 3050e0e98b2SMatthias Ringwald @echo "Creating $@" 3060e0e98b2SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 3070e0e98b2SMatthias Ringwald 308f2eb0907SMatthias Ringwaldbluetooth_init_cc2560C_1.4.c: initscripts-TIInit_6.12.26_v1.4.bts 309f2eb0907SMatthias Ringwald @echo "Creating $@" 310f2eb0907SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 311f2eb0907SMatthias Ringwald 31215218b79SMatthias Ringwaldbluetooth_init_cc2560C_avpr_1.4.c: initscripts-TIInit_6.12.26_v1.4.bts initscripts-TIInit_6.12.26_avpr_add-on_v1.4.bts 31315218b79SMatthias Ringwald @echo "Creating $@" 31415218b79SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 31515218b79SMatthias Ringwald 316f2eb0907SMatthias Ringwaldbluetooth_init_cc2564C_1.4.c: initscripts-TIInit_6.12.26_v1.4.bts initscripts-TIInit_6.12.26_ble_add-on_v1.4.bts 317f2eb0907SMatthias Ringwald @echo "Creating $@" 318f2eb0907SMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 319f2eb0907SMatthias Ringwald 3200e0e98b2SMatthias Ringwald 321d5814ca7SMatthias RingwaldTIInit_11.8.32.c: TIInit_11.8.32.bts 32206ee659aSMatthias Ringwald @echo "Creating $@" 32306ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 324d5814ca7SMatthias Ringwald 325d5814ca7SMatthias RingwaldTIInit_12.10.28.c: TIInit_12.10.28.bts 32606ee659aSMatthias Ringwald @echo "Creating $@" 32706ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 328d5814ca7SMatthias Ringwald 329a3fe55ccSMatthias RingwaldTIInit_12.8.32.c: TIInit_12.8.32.bts 33006ee659aSMatthias Ringwald @echo "Creating $@" 33106ee659aSMatthias Ringwald @$(CONVERSION_SCRIPT) $^ $@ 332a3fe55ccSMatthias Ringwald 333638e16f3SMatthias Ringwaldall-scripts: \ 334638e16f3SMatthias Ringwald bluetooth_init_cc2560_2.44.c \ 335638e16f3SMatthias Ringwald bluetooth_init_cc2560A_2.14.c \ 336638e16f3SMatthias Ringwald bluetooth_init_cc2564_2.14.bts \ 33715218b79SMatthias Ringwald bluetooth_init_cc2560B_1.8_BT_Spec_4.1.c \ 3383d919a60SMatthias Ringwald bluetooth_init_cc2564B_1.8_BT_Spec_4.1.c \ 33915218b79SMatthias Ringwald bluetooth_init_cc2560C_1.4.c \ 34015218b79SMatthias Ringwald bluetooth_init_cc2560C_avpr_1.4.c \ 34115218b79SMatthias Ringwald bluetooth_init_cc2564C_1.4.c \ 342638e16f3SMatthias Ringwald TIInit_11.8.32.c \ 343638e16f3SMatthias Ringwald TIInit_12.10.28.c \ 344638e16f3SMatthias Ringwald TIInit_12.8.32.c \ 345a3fe55ccSMatthias Ringwald 346a3fe55ccSMatthias Ringwaldclean-scripts: 34737da03daSMatthias Ringwald rm -fr cc256x*.zip CC256*.zip bluetooth_init_cc256*.c TIInit*.c *.bts BLE_init_cc256*.c 348a3fe55ccSMatthias Ringwald 349a3fe55ccSMatthias Ringwald 350