Home
last modified time | relevance | path

Searched refs:bluetooth (Results 1 – 25 of 29) sorted by relevance

12

/AliOS-Things-master/hardware/chip/haas1000/drivers/services/nv_section/customparam_section/
A DMakefile13 -Ithirdparty/bluetooth/bt_host/bt_common/include/common \
14 -Ithirdparty/bluetooth/bt_host/bt_common/include/net \
15 -Ithirdparty/bluetooth/bt_host/bt_common/include/misc \
16 -Ithirdparty/bluetooth/bt_host/bt_common/include/zephyr \
17 -Ithirdparty/bluetooth/bt_host/bt_common/port/include \
18 -Ithirdparty/bluetooth/bt_host/bt_common/tinycrypt/include \
19 -Ithirdparty/bluetooth/bt_host/bt_common/tinycrypt/include/tinycrypt \
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/nv_section/userdata_section/
A DMakefile29 -Ithirdparty/bluetooth/bt_mesh/inc \
32 -Ithirdparty/bluetooth/bt_host/bt_common/include/net \
33 -Ithirdparty/bluetooth/bt_host/bt_common/include/misc \
34 -Ithirdparty/bluetooth/bt_host/bt_common/include/zephyr \
35 -Ithirdparty/bluetooth/bt_host/bt_common/port/include \
36 -Ithirdparty/bluetooth/bt_host/bt_common/tinycrypt/include \
37 -Ithirdparty/bluetooth/bt_host/bt_common/tinycrypt/include/tinycrypt \
38 -Ithirdparty/bluetooth/bt_host/bt_common/include/common
/AliOS-Things-master/components/py_engine/tests/multi_bluetooth/
A Dble_gatt_data_transfer.py4 import time, machine, bluetooth
22 SERVICE_UUID = bluetooth.UUID("00000001-1111-2222-3333-444444444444")
23 CHAR_CTRL_UUID = bluetooth.UUID("00000002-1111-2222-3333-444444444444")
24 CHAR_RX_UUID = bluetooth.UUID("00000003-1111-2222-3333-444444444444")
25 CHAR_TX_UUID = bluetooth.UUID("00000004-1111-2222-3333-444444444444")
26 CHAR_CTRL = (CHAR_CTRL_UUID, bluetooth.FLAG_WRITE | bluetooth.FLAG_NOTIFY)
27 CHAR_RX = (CHAR_RX_UUID, bluetooth.FLAG_WRITE | bluetooth.FLAG_WRITE_NO_RESPONSE)
28 CHAR_TX = (CHAR_TX_UUID, bluetooth.FLAG_NOTIFY)
158 ble = bluetooth.BLE()
A Dble_characteristic.py4 import time, machine, bluetooth
22 SERVICE_UUID = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
23 CHAR_UUID = bluetooth.UUID("00000000-1111-2222-3333-444444444444")
26 bluetooth.FLAG_READ | bluetooth.FLAG_WRITE | bluetooth.FLAG_NOTIFY | bluetooth.FLAG_INDICATE,
190 ble = bluetooth.BLE()
A Dstress_log_filesystem.py6 import time, machine, bluetooth, os
27 SERVICE_UUID = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
28 CHAR_UUID = bluetooth.UUID("00000000-1111-2222-3333-444444444444")
31 bluetooth.FLAG_READ | bluetooth.FLAG_WRITE | bluetooth.FLAG_NOTIFY | bluetooth.FLAG_INDICATE,
188 ble = bluetooth.BLE()
A Dble_mtu.py23 import time, machine, bluetooth
38 SERVICE_UUID = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
39 CHAR_UUID = bluetooth.UUID("00000000-1111-2222-3333-444444444444")
42 bluetooth.FLAG_READ | bluetooth.FLAG_WRITE | bluetooth.FLAG_NOTIFY,
192 ble = bluetooth.BLE()
A Dble_gattc_discover_services.py4 import time, machine, bluetooth
15 UUID_A = bluetooth.UUID(0x180D)
16 UUID_B = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
99 ble = bluetooth.BLE()
A Dble_gap_pair.py5 import time, machine, bluetooth
22 SERVICE_UUID = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
23 CHAR_UUID = bluetooth.UUID("00000000-1111-2222-3333-444444444444")
126 ble = bluetooth.BLE()
A Dble_gap_pair_bond.py6 import time, machine, bluetooth
24 SERVICE_UUID = bluetooth.UUID("A5A5A5A5-FFFF-9999-1111-5A5A5A5A5A5A")
25 CHAR_UUID = bluetooth.UUID("00000000-1111-2222-3333-444444444444")
131 ble = bluetooth.BLE()
A Dble_gap_device_name.py4 import time, machine, bluetooth
17 GAP_DEVICE_NAME_UUID = bluetooth.UUID(0x2A00)
119 ble = bluetooth.BLE()
A Dble_gap_advertise.py4 import time, machine, bluetooth
62 ble = bluetooth.BLE()
A Dble_gap_connect.py4 import time, machine, bluetooth
86 ble = bluetooth.BLE()
A Dble_l2cap.py8 import time, machine, bluetooth, random
173 ble = bluetooth.BLE()
/AliOS-Things-master/components/ble_host/bt_host/ali_vendormodel_profile/
A DREADME.rst6 over PB-GATT bearer and join the bluetooth low energy mesh network. After
11 bluetooth mesh stack. If vendor has their own ble mesh stack, just need to
15 /network/bluetooth/bt_mesh_profile/bt_mesh_profile.h
31 $ aos make bluetooth.blemesh_tmall@pca10056
34 $ aos make bluetooth.blemesh_tmall@pca10040
45 $ arm-none-eabi-gdb bluetooth.blemesh_tmall\@pca10040.elf
56 2) say "发现设备" to let tmall genius scan on the smart bluetooth devices nearby
A Dali_vendormodel_profile.mk5 $(NAME)_COMPONENTS := bluetooth.bt_mesh
/AliOS-Things-master/components/ble_host/bt_host/common/
A DMakefile1 ccflags-y += -I$(srctree)/subsys/bluetooth
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dmodbluetooth.c257 if (MP_STATE_VM(bluetooth) == MP_OBJ_NULL) { in bluetooth_ble_make_new()
277 MP_STATE_VM(bluetooth) = MP_OBJ_FROM_PTR(o); in bluetooth_ble_make_new()
279 return MP_STATE_VM(bluetooth); in bluetooth_ble_make_new()
431 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in bluetooth_ble_irq()
1035 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in bluetooth_ble_invoke_irq()
1121 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in invoke_irq_handler()
1380 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in schedule_ringbuf()
1392 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in mp_bluetooth_gap_on_connected_disconnected()
1405 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in mp_bluetooth_gap_on_connection_update()
1418 mp_obj_bluetooth_ble_t *o = MP_OBJ_TO_PTR(MP_STATE_VM(bluetooth)); in mp_bluetooth_gatts_on_write()
[all …]
/AliOS-Things-master/components/ble_host/ble_profiles/
A Dbuild.mk25 L_INCS += $(L_PATH) kernel/protocols/bluetooth/include
/AliOS-Things-master/hardware/chip/haas1000/drivers/thirdparty/
A DMakefile41 obj-y += bluetooth/
/AliOS-Things-master/components/ble_host/bt_host/host/
A DMakefile2 ccflags-y +=-I$(srctree)/subsys/bluetooth
/AliOS-Things-master/components/SDL2/src/joystick/hidapi/
A DSDL_hidapi_xboxone.c119 SDL_bool bluetooth; member
324 ctx->bluetooth = IsBluetoothXboxOneController(device->vendor_id, device->product_id); in HIDAPI_DriverXboxOne_OpenJoystick()
325 ctx->initialized = ctx->bluetooth ? SDL_TRUE : SDL_FALSE; in HIDAPI_DriverXboxOne_OpenJoystick()
344 if (ctx->bluetooth) { in HIDAPI_DriverXboxOne_RumbleJoystick()
732 if (ctx->bluetooth) { in HIDAPI_DriverXboxOne_UpdateDevice()
/AliOS-Things-master/components/ble_host/
A DREADME.md542 #include <bluetooth/bluetooth.h>
543 #include <bluetooth/gatt.h>
544 #include <bluetooth/uuid.h>
/AliOS-Things-master/components/py_engine/engine/py/
A Dmpstate.h196 mp_obj_t bluetooth; member
/AliOS-Things-master/components/ble_host/bt_host/
A Dbuild.mk140 @make -C kernel/protocols/bluetooth/
/AliOS-Things-master/components/SDL2/docs/
A DREADME-ios.md239 directly with raw bluetooth, so many apps can live without this.
245 <string>MyApp would like to remain connected to nearby bluetooth Game Controllers and Game Pads eve…

Completed in 28 milliseconds

12