Lines Matching refs:btstack_root
20 btstack_root = os.path.abspath(os.path.dirname(sys.argv[0]) + '/..') variable
21 print ("BTstack root %s" % btstack_root)
24 global btstack_root
25 btstack_root = path
59 global btstack_root
61 defines.update(read_defines(btstack_root + '/' + hci_cmds_h_path))
62 defines.update(read_defines(btstack_root + '/' + hci_h_path))
63 defines.update(read_defines(btstack_root + '/' + bluetooth_h_path))
64 defines.update(read_defines(btstack_root + '/' + btstack_defines_h_path))
97 global btstack_root
100 …(bluetooth_events, bluetooth_subevents, bluetooth_event_types) = my_parse_events(btstack_root + '/…
103 …(btstack_events, btstack_subevents, btstack_event_types) = my_parse_events(btstack_root + '/' + bt…
126 global btstack_root
128 opcodes.update(my_parse_opcodes(btstack_root + '/' + hci_cmds_h_path, camel_case))
129 opcodes.update(my_parse_opcodes(btstack_root + '/' + daemon_cmds_h_path, camel_case))
180 global btstack_root
184 commands += my_parse_commands(btstack_root + '/' + hci_cmds_c_path, opcodes, camel_case)
185 commands += my_parse_commands(btstack_root + '/' + daemon_cmds_c_path, opcodes, camel_case)
189 global btstack_root
191 return my_parse_commands(btstack_root + '/' + daemon_cmds_c_path, opcodes, camel_case)