Home
last modified time | relevance | path

Searched full:os (Results 1 – 25 of 141) sorted by relevance

123456

/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/RTOS2/Include/
H A Dos_tick.h3 * @brief CMSIS OS Tick header file
36 /// Setup OS Tick timer to generate periodic RTOS Kernel Ticks
42 /// Enable OS Tick timer interrupt
45 /// Disable OS Tick timer interrupt
48 /// Acknowledge execution of OS Tick timer interrupt
51 /// Get OS Tick timer IRQ number
52 /// \return OS Tick IRQ number
55 /// Get OS Tick timer clock frequency
56 /// \return OS Tick timer clock frequency in Hz
59 /// Get OS Tick timer interval reload value
[all …]
/btstack/3rd-party/lc3-google/test/
H A Dsetup.py19 import os, sys, glob
24 'build', '--build-platlib', os.getcwd() + os.sep + 'build' ]
26 INC_DIR = '..' + os.sep + 'include'
27 SRC_DIR = '..' + os.sep + 'src'
30 [ SRC_DIR + os.sep + 'tables.c',
31 SRC_DIR + os.sep + 'bits.c',
32 SRC_DIR + os.sep + 'plc.c' ]
35 glob.glob(INC_DIR + os.sep + '*.h') + \
36 glob.glob(SRC_DIR + os.sep + '*.[c,h]')
/btstack/port/esp32/
H A Dcreate_examples.py5 import os
52 if not os.path.exists(example_folder):
53 os.makedirs(example_folder)
58 for file in os.listdir(examples_embedded):
71 if os.path.exists(apps_folder):
73 os.makedirs(apps_folder)
89 if not os.path.exists(main_folder):
90 os.makedirs(main_folder)
112 if os.path.exists(gatt_path):
122 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
H A Dintegrate_btstack.py7 import os
12 if not 'IDF_PATH' in os.environ:
16 IDF_PATH=os.environ['IDF_PATH']
21 if not os.path.exists(IDF_COMPONENTS):
27 if os.path.exists(IDF_BTSTACK):
32 local_dir = os.path.abspath(os.path.dirname(sys.argv[0]))
59 os.makedirs(platform_embedded_path)
H A Ddelete_examples.py5 import os
12 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
21 for file in os.listdir(examples_embedded):
26 if os.path.exists(apps_folder):
32 if os.path.exists(examples_folder):
/btstack/port/apollo2-em9304/
H A Dcreate_examples.py5 import os
18 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
53 if not os.path.exists(apps_folder):
54 os.makedirs(apps_folder)
61 if not os.path.exists(gcc_folder):
62 os.makedirs(gcc_folder)
67 if os.path.exists(gatt_path):
70 if not os.path.exists(src_folder):
71 os.makedirs(src_folder)
/btstack/port/stm32-f4discovery-usb/Drivers/CMSIS/RTOS2/Source/
H A Dos_tick_ptim.c3 * @brief CMSIS OS Tick implementation for Private Timer
39 // Setup OS Tick.
100 /// Enable OS Tick.
117 /// Disable OS Tick.
134 // Acknowledge OS Tick IRQ.
139 // Get OS Tick IRQ number.
144 // Get OS Tick clock.
149 // Get OS Tick interval.
154 // Get OS Tick count value.
160 // Get OS Tick overflow status.
H A Dos_systick.c3 * @brief CMSIS OS Tick SysTick implementation
39 // Setup OS Tick.
79 /// Enable OS Tick.
90 /// Disable OS Tick.
101 // Acknowledge OS Tick IRQ.
106 // Get OS Tick IRQ number.
111 // Get OS Tick clock.
116 // Get OS Tick interval.
121 // Get OS Tick count value.
127 // Get OS Tick overflow status.
H A Dos_tick_gtim.c3 * @brief CMSIS OS Tick implementation for Generic Timer
48 // Setup OS Tick.
122 /// Enable OS Tick.
139 /// Disable OS Tick.
156 // Acknowledge OS Tick IRQ.
162 // Get OS Tick IRQ number.
167 // Get OS Tick clock.
172 // Get OS Tick interval.
177 // Get OS Tick count value.
182 // Get OS Tick overflow status.
/btstack/port/samv71-xplained-atwilc3000/ASF/sam/utils/make/
H A DMakefile.sam.in90 # Allow override of operating system detection. The user can add OS=Linux or
91 # OS=Windows on the command line to explicit set the host OS.
94 ifdef OS
95 ifeq ($(strip $(OS)), Linux)
98 ifeq ($(strip $(OS)), Windows)
106 os := Windows
109 os := Windows
112 os ?= Windows
115 os := Windows
119 os := Linux
[all …]
/btstack/port/renesas-tb-s1ja-cc256x/
H A Dcreate_examples.py5 import os
33 if os.path.exists(path):
35 os.makedirs(path)
40 btstack_root = os.path.abspath(port_folder + "/../..")
58 example_files = os.listdir(examples_embedded)
126 if os.path.exists(gatt_path):
131 os.chmod(update_gatt_script_sh, 0o755)
134 if os.name == "nt":
144 port_folder = os.path.abspath(os.path.dirname(sys.argv[0]))
/btstack/port/wiced-h4/
H A Dcreate_examples.py5 import os
45 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
104 for file in os.listdir(examples_embedded):
116 if not os.path.exists(apps_folder):
117 os.makedirs(apps_folder)
130 if os.path.exists(gatt_path):
134 os.chmod(update_gatt_script, 0o755)
/btstack/port/archive/wiced-h5/
H A Dcreate_examples.py5 import os
45 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
110 for file in os.listdir(examples_embedded):
119 if not os.path.exists(apps_folder):
120 os.makedirs(apps_folder)
133 if os.path.exists(gatt_path):
137 os.chmod(update_gatt_script, 0o755)
/btstack/port/max32630-fthr/scripts/
H A Dcreate_examples.py5 import os
30 script_path = os.path.abspath(os.path.dirname(sys.argv[0])) + '/../'
60 example_files = os.listdir(examples_embedded)
74 if not os.path.exists(project_folder):
75 os.makedirs(project_folder)
80 if os.path.exists(gatt_path):
H A Ddelete_examples.py5 import os
12 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
23 for file in os.listdir(examples_embedded):
28 if os.path.exists(apps_folder):
/btstack/port/archive/pic32-harmony/
H A Dcreate_examples.py5 import os
20 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
52 for file in os.listdir(examples_embedded):
62 os.makedirs(apps_folder)
66 if os.path.exists(gatt_path):
70 os.chmod(update_gatt_script, 0o755)
79 os.makedirs(appX_folder)
85 os.makedirs(nbproject_folder)
88 for file in os.listdir(template_path):
/btstack/port/samv71-xplained-atwilc3000/scripts/
H A Dcreate_examples.py5 import os
46 script_path = os.path.abspath(os.path.dirname(sys.argv[0])) + '/../'
63 example_files = os.listdir(examples_embedded)
77 if not os.path.exists(project_folder):
78 os.makedirs(project_folder)
83 if os.path.exists(gatt_path):
H A Ddelete_examples.py5 import os
12 script_path = os.path.abspath(os.path.dirname(sys.argv[0]))
23 for file in os.listdir(examples_embedded):
28 if os.path.exists(apps_folder):
/btstack/port/archive/pic32-harmony/app.X/nbproject/
H A DMakefile-default.mk114 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
120 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
126 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
132 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
138 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
144 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
150 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
156 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
162 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
168 …DEBUG -fframe-base-loclist -x c -c -mprocessor=$(MP_PROCESSOR_OPTION) -Os -I"." -I"../../../..…
[all …]
/btstack/tool/
H A Dupdate_filename.py2 import os
5 btstack_root = os.path.abspath(os.path.dirname(sys.argv[0]) + '/..')
70 os.rename(outfile, infile)
74 basename = os.path.basename(file_path)
84 for root, dirs, files in os.walk(btstack_root, topdown=True):
H A Dbtstack_parser.py5 import os
20 btstack_root = os.path.abspath(os.path.dirname(sys.argv[0]) + '/..')
28 if not os.access(path, os.R_OK):
29 os.makedirs(path)
H A Dcreate_makefile_inc.py7 import os
22 btstack_root = os.path.abspath(os.path.dirname(sys.argv[0]) + '/..')
35 for file in sorted(os.listdir(folder_path)):
/btstack/port/mtk/LEScan/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...
/btstack/port/mtk/SPPClient/libs/
HDandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...
/btstack/tool/misc/
H A Dupdate_copyright.py2 import os
59 os.rename(outfile, infile)
86 btstack_root = os.path.abspath(os.path.dirname(sys.argv[0])) + "/../../"
94 for root, dirs, files in os.walk(btstack_root, topdown=True):

123456