xref: /btstack/chipset/cc256x/Makefile.inc (revision a3fe55ccff32e8dbd9221275424b6315c4da8a23)
1d5814ca7SMatthias Ringwald#
2d5814ca7SMatthias Ringwald# Makefile to download and convert .bts files from
3d5814ca7SMatthias Ringwald# http://processors.wiki.ti.com/index.php/CC256x_Downloads
4d5814ca7SMatthias Ringwald#
5d5814ca7SMatthias RingwaldBASE_URL = https://git.ti.com/ti-bt/service-packs/blobs/raw/a027ae390d8790e56e1c78136c78fe6537470e91
6d5814ca7SMatthias Ringwald
7*a3fe55ccSMatthias Ringwald# first generation CC2560 - TIInit_6.2.31.bts part of .zip archive
8*a3fe55ccSMatthias Ringwald
9*a3fe55ccSMatthias RingwaldCC2560_BT_SP_BTS.zip:
10*a3fe55ccSMatthias Ringwald	curl -O http://processors.wiki.ti.com/images/d/da/CC2560_BT_SP_BTS.zip
11*a3fe55ccSMatthias Ringwald
12*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560_2.44.bts: CC2560_BT_SP_BTS.zip
13*a3fe55ccSMatthias Ringwald	unzip CC2560_BT_SP_BTS.zip
14*a3fe55ccSMatthias Ringwald	mv CC2560_BT_SP_BTS/bluetooth_init_cc2560_2.44.bts .
15*a3fe55ccSMatthias Ringwald	rm -rf CC2560_BT_SP_BTS
16*a3fe55ccSMatthias Ringwald
17*a3fe55ccSMatthias Ringwald
18*a3fe55ccSMatthias Ringwald# second generation CC2560A and CC2564 - TIInit_6.6.15.bts part of .zip archive
19*a3fe55ccSMatthias Ringwald
20*a3fe55ccSMatthias RingwaldCC2560A_BT_SP_BTS.zip:
21*a3fe55ccSMatthias Ringwald	curl -O http://processors.wiki.ti.com/images/e/e7/CC2560A_BT_SP_BTS.zip
22*a3fe55ccSMatthias Ringwald
23*a3fe55ccSMatthias RingwaldCC2564_BT_BLE_SP_BTS.zip:
24*a3fe55ccSMatthias Ringwald	curl -O http://processors.wiki.ti.com/images/1/1e/CC2564_BT_BLE_SP_BTS.zip
25*a3fe55ccSMatthias Ringwald
26*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560A_2.14.bts: CC2560A_BT_SP_BTS.zip
27*a3fe55ccSMatthias Ringwald	unzip CC2560A_BT_SP_BTS.zip
28*a3fe55ccSMatthias Ringwald	mv CC2560A_BT_SP_BTS/bluetooth_init_cc2560a_2.14.bts .
29*a3fe55ccSMatthias Ringwald	rm -rf CC2560A_BT_SP_BTS
30*a3fe55ccSMatthias Ringwald
31*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2564_2.14.bts: CC2564_BT_BLE_SP_BTS.zip
32*a3fe55ccSMatthias Ringwald	unzip CC2564_BT_BLE_SP_BTS.zip
33*a3fe55ccSMatthias Ringwald	mv CC2564_BT_BLE_SP_BTS/bluetooth_init_cc2564_2.14.bts .
34*a3fe55ccSMatthias Ringwald	rm -rf CC2564_BT_BLE_SP_BTS
35*a3fe55ccSMatthias Ringwald
36*a3fe55ccSMatthias Ringwald
37*a3fe55ccSMatthias Ringwald# third generation
38*a3fe55ccSMatthias Ringwald
39d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.0.bts:
40d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/bluetooth_init_cc2560B_1.2_BT_Spec_4.0.bts
41d5814ca7SMatthias Ringwald
42d5814ca7SMatthias Ringwaldbluetooth_init_cc2564B_1.2_BT_Spec_4.0.bts:
43d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/bluetooth_init_cc2564B_1.2_BT_Spec_4.0.bts
44d5814ca7SMatthias Ringwald
45d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts:
46d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/bluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts
47d5814ca7SMatthias Ringwald
48d5814ca7SMatthias Ringwaldbluetooth_init_cc2564B_1.2_BT_Spec_4.1.bts:
49d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/bluetooth_init_cc2564B_1.2_BT_Spec_4.1.bts
50d5814ca7SMatthias Ringwald
51d5814ca7SMatthias RingwaldBLE_init_cc2564B_1.2.bts:
52d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/BLE_init_cc2564B_1.2.bts
53d5814ca7SMatthias Ringwald
54d5814ca7SMatthias RingwaldTIInit_11.8.32.bts:
55d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/TIInit_11.8.32.bts
56d5814ca7SMatthias Ringwald
57d5814ca7SMatthias RingwaldTIInit_12.10.28.bts:
58d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/TIInit_12.10.28.bts
59d5814ca7SMatthias Ringwald
60d5814ca7SMatthias RingwaldTIInit_12.8.32.bts:
61d5814ca7SMatthias Ringwald	curl -O $(BASE_URL)/TIInit_12.8.32.bts
62d5814ca7SMatthias Ringwald
63d5814ca7SMatthias Ringwald# convert to .c files
64d5814ca7SMatthias RingwaldCONVERSION_SCRIPT=$(BTSTACK_ROOT)/chipset/cc256x/convert_bts_init_scripts.py
65d5814ca7SMatthias Ringwald
66*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560_2.44.c: bluetooth_init_cc2560_2.44.bts
67*a3fe55ccSMatthias Ringwald	$(CONVERSION_SCRIPT)
68*a3fe55ccSMatthias Ringwald
69*a3fe55ccSMatthias Ringwald
70*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2560A_2.14.c: bluetooth_init_cc2560A_2.14.bts
71*a3fe55ccSMatthias Ringwald	$(CONVERSION_SCRIPT)
72*a3fe55ccSMatthias Ringwald
73*a3fe55ccSMatthias Ringwaldbluetooth_init_cc2564_2.14.c: bluetooth_init_cc2564_2.14.bts
74*a3fe55ccSMatthias Ringwald	$(CONVERSION_SCRIPT)
75*a3fe55ccSMatthias Ringwald
76*a3fe55ccSMatthias Ringwald
77d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.0.c: bluetooth_init_cc2560B_1.2_BT_Spec_4.0.bts
78d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
79d5814ca7SMatthias Ringwald
80d5814ca7SMatthias Ringwaldbluetooth_init_cc2564B_1.2_BT_Spec_4.0.c: bluetooth_init_cc2564B_1.2_BT_Spec_4.0.bts BLE_init_cc2564B_1.2.bts
81d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
82d5814ca7SMatthias Ringwald
83d5814ca7SMatthias Ringwaldbluetooth_init_cc2560B_1.2_BT_Spec_4.1.c: bluetooth_init_cc2560B_1.2_BT_Spec_4.1.bts
84d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
85d5814ca7SMatthias Ringwald
86d5814ca7SMatthias 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
87d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
88d5814ca7SMatthias Ringwald
89*a3fe55ccSMatthias Ringwald
90d5814ca7SMatthias RingwaldTIInit_11.8.32.c: TIInit_11.8.32.bts
91d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
92d5814ca7SMatthias Ringwald
93d5814ca7SMatthias RingwaldTIInit_12.10.28.c: TIInit_12.10.28.bts
94d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
95d5814ca7SMatthias Ringwald
96*a3fe55ccSMatthias RingwaldTIInit_12.8.32.c: TIInit_12.8.32.bts
97d5814ca7SMatthias Ringwald	$(CONVERSION_SCRIPT)
98*a3fe55ccSMatthias Ringwald
99*a3fe55ccSMatthias Ringwaldall-scripts: bluetooth_init_cc2560_2.44.c bluetooth_init_cc2560A_2.14.c bluetooth_init_cc2564_2.14.bts bluetooth_init_cc2560B_1.2_BT_Spec_4.0.c bluetooth_init_cc2564B_1.2_BT_Spec_4.0.c bluetooth_init_cc2560B_1.2_BT_Spec_4.1.c bluetooth_init_cc2564B_1.2_BT_Spec_4.1.c TIInit_11.8.32.c TIInit_12.10.28.c TIInit_12.8.32.c
100*a3fe55ccSMatthias Ringwald
101*a3fe55ccSMatthias Ringwaldclean-scripts:
102*a3fe55ccSMatthias Ringwald	rm -fr CC256*.zip bluetooth_init_cc256*.bts bluetooth_init_cc256*.c TIInit_*.bts TIInit_*.c BLE_init_cc256*.bts BLE_init_cc256*.c
103*a3fe55ccSMatthias Ringwald
104*a3fe55ccSMatthias Ringwald
105