/Zephyr-latest/samples/drivers/video/capture_to_lvgl/ |
D | README.rst | 45 [00:00:02.779,000] <inf> main: - Device name: dcmi@48020000 46 [00:00:02.779,000] <inf> main: - Capabilities: 47 [00:00:02.779,000] <inf> main: RGBP width [160; 160; 0] height [120; 120; 0] 48 [00:00:02.779,000] <inf> main: RGBP width [176; 176; 0] height [144; 144; 0] 49 [00:00:02.780,000] <inf> main: RGBP width [240; 240; 0] height [160; 160; 0] 50 [00:00:02.780,000] <inf> main: RGBP width [320; 320; 0] height [240; 240; 0] 51 [00:00:02.780,000] <inf> main: RGBP width [352; 352; 0] height [288; 288; 0] 52 [00:00:02.780,000] <inf> main: RGBP width [640; 640; 0] height [480; 480; 0] 53 [00:00:02.780,000] <inf> main: RGBP width [800; 800; 0] height [600; 600; 0] 54 [00:00:02.780,000] <inf> main: RGBP width [1024; 1024; 0] height [768; 768; 0] [all …]
|
/Zephyr-latest/samples/net/sockets/socketpair/ |
D | README.rst | 38 thread sends a fixed number of messages to the server (main). 47 main: read 'Alpha' on fd 4 48 main: read 'Bravo' on fd 6 49 main: read 'Charlie' on fd 8 50 main: read 'Alpha' on fd 4 51 main: read 'Bravo' on fd 6 52 main: read 'Charlie' on fd 8 53 main: read 'Alpha' on fd 4 54 main: read 'Bravo' on fd 6 55 main: read 'Charlie' on fd 8 [all …]
|
/Zephyr-latest/samples/cpp/cpp_synchronization/ |
D | README.rst | 12 A simple application demonstrates basic sanity of the kernel. The main thread 38 main: Hello World! 40 main: Hello World! 42 main: Hello World! 44 main: Hello World! 46 main: Hello World! 48 main: Hello World! 50 main: Hello World! 52 main: Hello World! 54 main: Hello World! [all …]
|
/Zephyr-latest/samples/boards/nordic/nrf53_sync_rtc/ |
D | README.rst | 48 [00:00:00.306,915] <inf> main: IPC send at 10056 ticks 49 [00:00:00.356,903] <inf> main: IPC send at 11695 ticks 50 [00:00:00.406,921] <inf> main: IPC send at 13334 ticks 51 [00:00:00.456,939] <inf> main: IPC send at 14973 ticks 52 [00:00:00.506,958] <inf> main: IPC send at 16612 ticks 53 [00:00:00.556,976] <inf> main: IPC send at 18251 ticks 54 [00:00:00.606,994] <inf> main: IPC send at 19890 ticks 55 [00:00:00.657,012] <inf> main: IPC send at 21529 ticks 56 [00:00:00.707,031] <inf> main: IPC send at 23168 ticks 57 [00:00:00.757,049] <inf> main: IPC send at 24807 ticks [all …]
|
/Zephyr-latest/tests/kernel/mem_protect/stackprot/ |
D | README.txt | 34 Starts main 45 main: Stack ok 46 main: Stack ok 47 main: Stack ok 48 main: Stack ok 49 main: Stack ok 50 main: Stack ok 52 PASS - main.
|
/Zephyr-latest/tests/kernel/mem_slab/mslab/ |
D | README.txt | 34 Starts main 36 (1) - Allocate and free 2 blocks in <main> 70 (3) - Further allocation results in timeout in <main> 72 main: k_mem_slab_alloc times out which is expected 73 main: start to wait for block 78 main: k_mem_slab_alloc OK, block allocated at 0x00406000 79 main: start to wait for block 84 main: k_mem_slab_alloc OK, block allocated at 0x00406400 88 main: Used 2 block 89 main: 1 block freed, used 1 block [all …]
|
/Zephyr-latest/tests/benchmarks/sched/ |
D | README.rst | 7 abstractions. It works very simply: a main thread creates a "partner" 11 1. The main thread calls _unpend_first_thread() 12 2. The main thread calls _ready_thread() 13 3. The main thread calls k_yield() 16 (the kernel switches to the main thread) 17 5. The main thread returns from k_yield()
|
/Zephyr-latest/samples/subsys/logging/dictionary/ |
D | README.rst | 68 [ 86332] <dbg> hello_world: main: debug string 70 [ 104784] <dbg> hello_world: main: int8_t 1, uint8_t 2 71 [ 117609] <dbg> hello_world: main: int16_t 16, uint16_t 17 72 [ 130454] <dbg> hello_world: main: int32_t 32, uint32_t 33 73 [ 143299] <dbg> hello_world: main: int64_t 64, uint64_t 65 74 [ 166374] <dbg> hello_world: main: char ! 75 [ 179452] <dbg> hello_world: main: s str static str 76 [ 193395] <dbg> hello_world: main: d str dynamic str 77 …[ 217283] <dbg> hello_world: main: mixed str dynamic str --- dynamic str --- another dynamic st… 78 [ 266022] <dbg> hello_world: main: mixed c/s ! static str dynamic str static str ! [all …]
|
/Zephyr-latest/tests/ztest/zexpect/ |
D | CMakeLists.txt | 8 target_sources(testbinary PRIVATE src/main.c) 14 message(STATUS "adding main.cpp") 15 target_sources(app PRIVATE src/main.cpp) 17 target_sources(app PRIVATE src/main.c)
|
/Zephyr-latest/doc/kernel/services/threads/ |
D | system_threads.rst | 17 :c:func:`main` function (if one is defined). 19 By default, the main thread uses the highest configured preemptible thread 21 threads, the main thread uses the lowest configured cooperative thread 24 The main thread is an essential thread while it is performing kernel 25 initialization or executing the application's :c:func:`main` function; 27 :c:func:`main` is not defined, or if it executes and then does a normal 28 return, the main thread terminates normally and no error is raised. 53 Writing a main() function 56 An application-supplied ``main()`` function begins executing once 59 kernel passes arguments to it and ``main(int, char **)`` can be used. [all …]
|
/Zephyr-latest/tests/ztest/base/ |
D | CMakeLists.txt | 10 target_sources(testbinary PRIVATE src/main.c) 16 message(STATUS "adding main.cpp") 17 target_sources(app PRIVATE src/main.cpp) 19 target_sources(app PRIVATE src/main.c)
|
/Zephyr-latest/samples/boards/intel/adsp/code_relocation/src/ |
D | main.c | 11 int main(void) in main() function 13 printk("%s location: %p\n", __func__, main); in main()
|
/Zephyr-latest/scripts/build/ |
D | user_wordsize.py | 8 def main(): function 14 main()
|
D | dir_is_writeable.py | 6 def main(): function 13 main()
|
/Zephyr-latest/samples/subsys/usb/dfu/src/ |
D | main.c | 13 LOG_MODULE_REGISTER(main); 15 int main(void) in main() function
|
/Zephyr-latest/samples/subsys/usb/testusb/src/ |
D | main.c | 10 LOG_MODULE_REGISTER(main); 12 int main(void) in main() function
|
/Zephyr-latest/tests/cmake/zephyr_get/ |
D | CMakeLists.txt | 11 # Project mode initialization (main CMake invocation) 143 IMAGE zephyr_get "sysbuild.main" 150 IMAGE zephyr_get_3rd "sysbuild.main" 159 IMAGE zephyr_get "sysbuild.main" 179 IMAGE zephyr_get "sysbuild.main" 181 IMAGE zephyr_get_3rd "sysbuild.main" 230 IMAGE zephyr_get "sysbuild.main" 243 IMAGE zephyr_get "sysbuild.main" 244 IMAGE zephyr_get_2nd "sysbuild.2nd;sysbuild.main" 245 IMAGE zephyr_get_3rd "sysbuild.main" [all …]
|
/Zephyr-latest/tests/subsys/debug/gdbstub/ |
D | test_breakpoints.gdbinit | 2 b main.c:29 9 # break at main() 16 # exit main() and continue with code coverage dump, if configured
|
/Zephyr-latest/tests/crypto/tinycrypt_hmac_prng/ |
D | README.txt | 35 PASS - main. 38 PASS - main. 41 PASS - main. 44 PASS - main.
|
/Zephyr-latest/doc/security/ |
D | vulnerabilities.rst | 145 This has been fixed in the below pull requests for main, branch from 151 - `PR24154 fix for main 300 This has been fixed in a PR against Zephyr main. 305 - `PR24954 fix on main (to be fixed in v2.3.0) 330 This has been fixed in a PR against Zephyr main. 335 - `PR27865 fix on main (to be fixed in v2.4.0) 386 This has been fixed in main for v2.3. 407 This has been fixed in main for v2.3. 412 - `PR24435 fix in main for v2.3 561 This has been fixed in main for v2.3. [all …]
|
/Zephyr-latest/samples/drivers/w1/scanner/ |
D | README.rst | 32 [00:00:00.392,272] <inf> main: Device found; family: 0x3a, serial: 0x3af9985800000036 33 [00:00:00.524,169] <inf> main: Device found; family: 0x3a, serial: 0x3a6ea2580000003b 34 [00:00:00.656,097] <inf> main: Device found; family: 0x28, serial: 0x2856fb470d000022 35 [00:00:00.656,097] <inf> main: Number of devices found on bus: 3
|
/Zephyr-latest/samples/drivers/w1/scanner/src/ |
D | main.c | 12 LOG_MODULE_REGISTER(main, CONFIG_LOG_DEFAULT_LEVEL); 20 int main(void) in main() function
|
/Zephyr-latest/soc/intel/intel_adsp/common/ |
D | CMakeLists.txt | 57 DEPENDS ${CMAKE_BINARY_DIR}/zephyr/boot.mod ${CMAKE_BINARY_DIR}/zephyr/main.mod 61 OUTPUT ${CMAKE_BINARY_DIR}/zephyr/boot.mod ${CMAKE_BINARY_DIR}/zephyr/main.mod 68 # main.mod file below. 102 --set-section-flags .module.main=noload,readonly 105 --rename-section .module.main=.module 106 ${KERNEL_REMAPPED} ${CMAKE_BINARY_DIR}/zephyr/main.mod 2>${NULL_FILE} 112 ${CMAKE_BINARY_DIR}/zephyr/main.mod 113 ${CMAKE_BINARY_DIR}/zephyr/main.mod 2>${NULL_FILE} 118 COMMENT "strip main.mod" 119 APPEND OUTPUT ${CMAKE_BINARY_DIR}/zephyr/main.mod [all …]
|
/Zephyr-latest/submanifests/ |
D | example.yaml.sample | 1 # Example manifest file you can include into the main west.yml file. 11 # If you want to fetch a particular commit rather than the main 18 revision: main
|
/Zephyr-latest/samples/subsys/fs/format/src/ |
D | main.c | 39 LOG_MODULE_REGISTER(main, LOG_LEVEL_INF); 41 int main(void) in main() function
|