Home
last modified time | relevance | path

Searched full:sys (Results 1 – 25 of 2801) sorted by relevance

12345678910>>...113

/Zephyr-latest/samples/subsys/logging/syst/
DREADME.rst3 MIPI Sys-T Logging Sample
14 This project outputs a few sample log messages in MIPI Sys-T format.
15 These Sys-T messages can be interpreted by a utility in
16 :file:`<workspace>/modules/debug/mipi-sys-t/printer/`.
18 Build the Sys-T Message Parser
23 cd <workspace>/modules/debug/mipi-sys-t/printer/
30 :file:`<workspace>/modules/debug/mipi-sys-t/printer/build`.
32 MIPI Sys-T Text Messages
35 The Sys-T text messages are self contained strings that do not
66 …Booting from ROM..SYS-T RAW DATA: 020A000B490000000000000000002A2A2A20426F6F74696E67205A6570687972…
[all …]
Dsample.yaml6 - mipi-sys-t
8 - mipi-sys-t
25 - "SYS-T RAW DATA: "
46 - "SYS-T RAW DATA: "
61 - "SYS-T RAW DATA: "
75 - "SYS-T RAW DATA: "
90 - "SYS-T RAW DATA: "
104 - "SYS-T RAW DATA: "
119 - "SYS-T RAW DATA: "
134 - "SYS-T RAW DATA: "
/Zephyr-latest/modules/
DKconfig.syst5 bool "MIPI SyS-T Library Support"
7 This option enables the MIPI SyS-T Library
12 bool "STP Transport Layer for MIPI SyS-T"
15 Transport Layer for MIPI SyS-T
18 bool "output MIPI SyS-T raw data packet"
20 This option outputs MIPI SyS-T raw data packet
26 Tell MIPI Sys-T library to not build with
/Zephyr-latest/include/zephyr/drivers/
Dclock_control.h31 #include <zephyr/sys/__assert.h>
32 #include <zephyr/sys/slist.h>
79 clock_control_subsys_t sys);
82 clock_control_subsys_t sys,
86 clock_control_subsys_t sys,
92 clock_control_subsys_t sys);
95 clock_control_subsys_t sys,
99 clock_control_subsys_t sys,
122 * @param sys Opaque data representing the clock.
126 clock_control_subsys_t sys) in clock_control_on() argument
[all …]
/Zephyr-latest/include/zephyr/
Dkernel_includes.h25 #include <zephyr/sys/atomic.h>
26 #include <zephyr/sys/__assert.h>
27 #include <zephyr/sys/dlist.h>
28 #include <zephyr/sys/slist.h>
29 #include <zephyr/sys/sflist.h>
30 #include <zephyr/sys/util.h>
35 #include <zephyr/sys/printk.h>
37 #include <zephyr/sys/rb.h>
44 #include <zephyr/sys/kobject.h>
/Zephyr-latest/scripts/ruff/
Dgen_format_exclude.py6 import sys
13 sys.stdout.write("[format]\n")
14 sys.stdout.write("exclude = [\n")
15 for line in sys.stdin:
17 sys.stdout.write(f' "./{line[16:-1]}",\n')
18 sys.stdout.write("]\n")
Dgen_lint_exclude.py7 import sys
30 violations = json.load(sys.stdin)
31 sys.stdout.write("[lint.per-file-ignores]\n")
39 sys.stdout.write(f'"./{path.relative_to(Path.cwd())}" = [\n')
41 sys.stdout.write(f' "{r.code}",\t# {r.url}\n'.expandtabs())
42 sys.stdout.write("]\n")
/Zephyr-latest/drivers/clock_control/
Dclock_control_silabs_series.c11 #include <zephyr/sys/util.h>
22 clock_control_subsys_t sys);
24 static int silabs_clock_control_on(const struct device *dev, clock_control_subsys_t sys) in silabs_clock_control_on() argument
26 const struct silabs_clock_control_cmu_config *cfg = sys; in silabs_clock_control_on()
29 if (silabs_clock_control_get_status(dev, sys) == CLOCK_CONTROL_STATUS_ON) { in silabs_clock_control_on()
41 static int silabs_clock_control_off(const struct device *dev, clock_control_subsys_t sys) in silabs_clock_control_off() argument
43 const struct silabs_clock_control_cmu_config *cfg = sys; in silabs_clock_control_off()
54 static int silabs_clock_control_get_rate(const struct device *dev, clock_control_subsys_t sys, in silabs_clock_control_get_rate() argument
57 const struct silabs_clock_control_cmu_config *cfg = sys; in silabs_clock_control_get_rate()
69 clock_control_subsys_t sys) in silabs_clock_control_get_status() argument
[all …]
Dclock_control_fixed_rate.c17 clock_control_subsys_t sys) in fixed_rate_clk_on() argument
20 ARG_UNUSED(sys); in fixed_rate_clk_on()
26 clock_control_subsys_t sys) in fixed_rate_clk_off() argument
29 ARG_UNUSED(sys); in fixed_rate_clk_off()
35 clock_control_subsys_t sys) in fixed_rate_clk_get_status() argument
41 clock_control_subsys_t sys, in fixed_rate_clk_get_rate() argument
46 ARG_UNUSED(sys); in fixed_rate_clk_get_rate()
Dclock_control_renesas_ra_cgc.c26 static int clock_control_renesas_ra_on(const struct device *dev, clock_control_subsys_t sys) in clock_control_renesas_ra_on() argument
28 struct clock_control_ra_subsys_cfg *subsys_clk = (struct clock_control_ra_subsys_cfg *)sys; in clock_control_renesas_ra_on()
30 if (!dev || !sys) { in clock_control_renesas_ra_on()
37 static int clock_control_renesas_ra_off(const struct device *dev, clock_control_subsys_t sys) in clock_control_renesas_ra_off() argument
39 struct clock_control_ra_subsys_cfg *subsys_clk = (struct clock_control_ra_subsys_cfg *)sys; in clock_control_renesas_ra_off()
41 if (!dev || !sys) { in clock_control_renesas_ra_off()
49 static int clock_control_renesas_ra_get_rate(const struct device *dev, clock_control_subsys_t sys, in clock_control_renesas_ra_get_rate() argument
56 if (!dev || !sys || !rate) { in clock_control_renesas_ra_get_rate()
Dclock_control_nrf_auxpll.c16 #include <zephyr/sys/util.h>
35 static int clock_control_nrf_auxpll_on(const struct device *dev, clock_control_subsys_t sys) in clock_control_nrf_auxpll_on() argument
41 ARG_UNUSED(sys); in clock_control_nrf_auxpll_on()
56 static int clock_control_nrf_auxpll_off(const struct device *dev, clock_control_subsys_t sys) in clock_control_nrf_auxpll_off() argument
60 ARG_UNUSED(sys); in clock_control_nrf_auxpll_off()
70 static int clock_control_nrf_auxpll_get_rate(const struct device *dev, clock_control_subsys_t sys, in clock_control_nrf_auxpll_get_rate() argument
76 ARG_UNUSED(sys); in clock_control_nrf_auxpll_get_rate()
89 clock_control_subsys_t sys) in clock_control_nrf_auxpll_get_status() argument
93 ARG_UNUSED(sys); in clock_control_nrf_auxpll_get_status()
Dclock_control_sam_pmc.c22 clock_control_subsys_t sys) in atmel_sam_clock_control_on() argument
26 const struct atmel_sam_pmc_config *cfg = (const struct atmel_sam_pmc_config *)sys; in atmel_sam_clock_control_on()
48 clock_control_subsys_t sys) in atmel_sam_clock_control_off() argument
52 const struct atmel_sam_pmc_config *cfg = (const struct atmel_sam_pmc_config *)sys; in atmel_sam_clock_control_off()
74 clock_control_subsys_t sys, in atmel_sam_clock_control_get_rate() argument
79 const struct atmel_sam_pmc_config *cfg = (const struct atmel_sam_pmc_config *)sys; in atmel_sam_clock_control_get_rate()
104 clock_control_subsys_t sys) in atmel_sam_clock_control_get_status() argument
108 const struct atmel_sam_pmc_config *cfg = (const struct atmel_sam_pmc_config *)sys; in atmel_sam_clock_control_get_status()
/Zephyr-latest/subsys/logging/
DKconfig.formatting25 bool "MIPI SyS-T format output"
29 Enable MIPI SyS-T format output for the logger system.
34 bool "Use MIPI Sys-T Catalog for logging"
39 Use MIPI Sys-T Catalog for logging instead of plain text.
42 bool "Disable MIPI Sys-T protocol timestamp"
44 Remove the timestamp from the MIPI Sys-T protocol.
47 int "Size of temporary arguments buffer when using Sys-T Catalog"
52 argument list needed for the MIPI Sys-T library for processing
60 the call stack for processing the logging format strings MIPI Sys-T library.
70 as the Sys-T message module ID (as in origin unit in Sys-T
[all …]
/Zephyr-latest/lib/libc/picolibc/
Dpicolibc-hooks.h13 #include <zephyr/posix/sys/stat.h>
14 #include <sys/time.h>
17 #include <zephyr/sys/util.h>
18 #include <zephyr/sys/errno_private.h>
19 #include <zephyr/sys/libc-hooks.h>
23 #include <zephyr/sys/sem.h>
/Zephyr-latest/tests/misc/check_init_priorities/
Dvalidate_check_init_priorities_output.py8 import sys
18 if len(sys.argv) != 2:
19 print(f"usage: {sys.argv[0]} FILE_PATH")
20 sys.exit(1)
23 with open(sys.argv[1], "r") as file:
38 sys.exit(1)
41 sys.exit(0)
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_runner.py15 import sys
208 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
217 sys.stdout.write(out)
218 sys.stderr.write(err)
244 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
257 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
295 sys.stdout.write(out)
296 sys.stderr.write(err)
367 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
372 sys.stdout.write(out)
[all …]
Dtest_report.py15 import sys
146 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
151 sys.stdout.write(out)
152 sys.stderr.write(err)
195 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
200 sys.stdout.write(out)
201 sys.stderr.write(err)
227 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
232 sys.stdout.write(out)
233 sys.stderr.write(err)
[all …]
Dtest_coverage.py13 import sys
171 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
176 sys.stdout.write(out)
177 sys.stderr.write(err)
199 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
204 sys.stdout.write(out)
205 sys.stderr.write(err)
231 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
236 sys.stdout.write(out)
237 sys.stderr.write(err)
[all …]
Dtest_printouts.py13 import sys
287 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
292 sys.stdout.write(out)
293 sys.stderr.write(err)
323 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
328 sys.stdout.write(out)
329 sys.stderr.write(err)
359 with mock.patch.object(sys, 'argv', [sys.argv[0]] + args), \
364 sys.stdout.write(out)
365 sys.stderr.write(err)
[all …]
/Zephyr-latest/scripts/ci/
Derrno.py18 import sys
34 newlib = Path("arm-zephyr-eabi/arm-zephyr-eabi/include/sys/errno.h")
40 print(f'Environment variable missing: {e}', file=sys.stderr)
41 sys.exit(1)
49 print('Invalid entry in errno.h:', file=sys.stderr)
50 print(f'{e[0]} (with value {e[1]})', file=sys.stderr)
51 sys.exit(1)
/Zephyr-latest/include/zephyr/posix/sys/
Dtime.h15 #include <sys/_timeval.h>
17 #include <sys/types.h>
25 #include <sys/types.h>
26 #include <sys/_timeval.h>
/Zephyr-latest/scripts/build/
Ddir_is_writeable.py3 import sys
7 is_writeable = os.access(sys.argv[1], os.W_OK)
9 sys.exit(return_code)
/Zephyr-latest/scripts/kconfig/
Ddiffconfig12 import sys, os
39 sys.exit(0)
74 if ("-h" in sys.argv or "--help" in sys.argv):
78 if "-m" in sys.argv:
80 sys.argv.remove("-m")
82 argc = len(sys.argv)
95 configa_filename = sys.argv[1]
96 configb_filename = sys.argv[2]
102 e = sys.exc_info()[1]
/Zephyr-latest/tests/posix/headers/src/
Dsys_select_h.c10 #include <sys/select.h>
12 #include <zephyr/posix/sys/select.h>
16 * @brief existence test for `<sys/select.h>`
18 …* @see <a href="https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_select.h.html">sys/s…
/Zephyr-latest/scripts/west_commands/
Drun_tests.py8 # package. Runs mypy and pytest. Any extra arguments in sys.argv are
25 import sys
29 mypy = [sys.executable, '-m', 'mypy', f'--config-file={here}/mypy.ini',
31 pytest = [sys.executable, '-m', 'pytest'] + sys.argv[1:]

12345678910>>...113