mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-30 06:32:43 +00:00
update gitignore files
This commit is contained in:
parent
ee8a36c873
commit
de804f9e40
@ -280,8 +280,8 @@ a2dp_sink_demo: ${CORE_OBJ} ${COMMON_OBJ} ${CLASSIC_OBJ} ${SDP_CLIENT} ${SBC_ENC
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ${EXAMPLES}
|
rm -f ${EXAMPLES}
|
||||||
rm -f *.o *.out *.hex *.exe
|
rm -f *.o *.out *.hex *.exe *.wav *.sbc
|
||||||
rm -f ancs_client_demo.h profile.h spp_and_le_counter.h le_counter.h le_streamer.h
|
rm -f ancs_client_demo.h profile.h spp_and_le_counter.h le_counter.h le_streamer.h
|
||||||
rm -f gatt_battery_query.h gatt_browser.h sm_pairing_peripheral.h
|
rm -f gatt_battery_query.h gatt_browser.h sm_pairing_peripheral.h
|
||||||
rm -rf *.dSYM
|
rm -rf *.dSYM
|
||||||
rm -rf ${BTSTACK_ROOT}/src/*.o
|
rm -rf ${BTSTACK_ROOT}/src/*.o
|
||||||
|
19
port/libusb/.gitignore
vendored
19
port/libusb/.gitignore
vendored
@ -1,5 +1,11 @@
|
|||||||
|
a2dp_sink_demo
|
||||||
ancs_client_demo
|
ancs_client_demo
|
||||||
ancs_client_demo.h
|
ancs_client_demo.h
|
||||||
|
avdtp_sink.sbc
|
||||||
|
avdtp_sink.sbc
|
||||||
|
avdtp_sink.wav
|
||||||
|
avdtp_sink_demo
|
||||||
|
avdtp_source_demo
|
||||||
ble_central_test
|
ble_central_test
|
||||||
ble_peripheral_test
|
ble_peripheral_test
|
||||||
bnep_test
|
bnep_test
|
||||||
@ -10,9 +16,12 @@ gap_inquiry_and_bond
|
|||||||
gap_le_advertisements
|
gap_le_advertisements
|
||||||
gap_le_advertisements
|
gap_le_advertisements
|
||||||
gatt_battery_query
|
gatt_battery_query
|
||||||
|
gatt_battery_query.h
|
||||||
gatt_browser
|
gatt_browser
|
||||||
|
gatt_browser.h
|
||||||
hfp_ag_demo
|
hfp_ag_demo
|
||||||
hfp_hf_demo
|
hfp_hf_demo
|
||||||
|
hid_keyboard_demo
|
||||||
hsp_ag_demo
|
hsp_ag_demo
|
||||||
hsp_hs_demo
|
hsp_hs_demo
|
||||||
l2cap_test
|
l2cap_test
|
||||||
@ -21,9 +30,13 @@ le_counter.h
|
|||||||
le_streamer
|
le_streamer
|
||||||
le_streamer
|
le_streamer
|
||||||
le_streamer.h
|
le_streamer.h
|
||||||
|
le_streamer_client
|
||||||
led_counter
|
led_counter
|
||||||
panu_demo
|
panu_demo
|
||||||
|
pbap_client_demo
|
||||||
profile.h
|
profile.h
|
||||||
|
sco_input*
|
||||||
|
sco_output*
|
||||||
sdp_bnep_query
|
sdp_bnep_query
|
||||||
sdp_general_query
|
sdp_general_query
|
||||||
sdp_rfcomm_query
|
sdp_rfcomm_query
|
||||||
@ -32,9 +45,9 @@ sm_pairing_peripheral
|
|||||||
sm_pairing_peripheral.h
|
sm_pairing_peripheral.h
|
||||||
spp_and_le_counter
|
spp_and_le_counter
|
||||||
spp_and_le_counter.h
|
spp_and_le_counter.h
|
||||||
|
spp_and_le_streamer
|
||||||
|
spp_and_le_streamer.h
|
||||||
spp_counter
|
spp_counter
|
||||||
spp_streamer
|
spp_streamer
|
||||||
spp_streamer
|
spp_streamer
|
||||||
sco_input*
|
spp_streamer_client
|
||||||
sco_output*
|
|
||||||
le_streamer_client
|
|
@ -1,29 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
import matplotlib.pyplot as plt
|
|
||||||
import csv
|
|
||||||
|
|
||||||
timestamp = list()
|
|
||||||
storage = list()
|
|
||||||
sbc_buffer_name = 'sbc_buffer.pdf'
|
|
||||||
with open('sbc-buffer.csv', 'rb') as csvfile:
|
|
||||||
data = csv.reader(csvfile, delimiter=' ')
|
|
||||||
for row in data:
|
|
||||||
i = 0
|
|
||||||
for cell in row:
|
|
||||||
if i == 0:
|
|
||||||
timestamp.append(int(cell))
|
|
||||||
i = 1
|
|
||||||
elif i == 1:
|
|
||||||
storage.append(int(cell))
|
|
||||||
i = 2
|
|
||||||
|
|
||||||
t = len(timestamp)
|
|
||||||
|
|
||||||
plt.plot(timestamp[0:t], storage[0:t], '.')
|
|
||||||
plt.xlabel('Time [ms]')
|
|
||||||
plt.ylabel('Queued SBC frames')
|
|
||||||
#plt.show()
|
|
||||||
plt.savefig(sbc_buffer_name)
|
|
||||||
|
|
||||||
print("\nCreated figure \'%s\', audio duration %d seconds.\n" % (sbc_buffer_name, len(timestamp)/1000))
|
|
13
test/pts/.gitignore
vendored
13
test/pts/.gitignore
vendored
@ -1,4 +1,7 @@
|
|||||||
ancs_client
|
ancs_client
|
||||||
|
avdtp_sink_test
|
||||||
|
avdtp_source_test
|
||||||
|
avrcp_test
|
||||||
ble_central_test
|
ble_central_test
|
||||||
ble_central_test.h
|
ble_central_test.h
|
||||||
ble_peripheral_test
|
ble_peripheral_test
|
||||||
@ -9,11 +12,9 @@ hfp_ag_test
|
|||||||
hfp_hf_test
|
hfp_hf_test
|
||||||
hsp_ag_test
|
hsp_ag_test
|
||||||
hsp_hs_test
|
hsp_hs_test
|
||||||
l2cap_test
|
|
||||||
profile.h
|
|
||||||
sco_loopbackiopt
|
|
||||||
sco_loopback
|
|
||||||
iopt
|
iopt
|
||||||
|
l2cap_test
|
||||||
le_data_channel
|
le_data_channel
|
||||||
avdtp_sink_test
|
profile.h
|
||||||
avdtp_source_test
|
sco_loopback
|
||||||
|
sco_loopbackiopt
|
||||||
|
1
tool/.gitignore
vendored
Normal file
1
tool/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.pyc
|
Loading…
x
Reference in New Issue
Block a user