Home
last modified time | relevance | path

Searched refs:uptime (Results 1 – 25 of 39) sorted by relevance

12

/Zephyr-latest/samples/drivers/ipm/ipm_esp32/
DREADME.rst44 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 502
46 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 10502
48 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 20503
50 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 30504
52 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 40505
54 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 50506
56 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 60507
58 PRO_CPU received a message from APP_CPU : APP_CPU uptime ticks 70508
/Zephyr-latest/subsys/net/lib/sntp/
DKconfig13 bool "Calculate SNTP uncertainty and set uptime timestamp"
16 uptime timestamp of when the time was valid and an uncertainty of the
18 seconds,fraction +/- uncertainty at uptime timestamp.
/Zephyr-latest/samples/drivers/counter/maxim_ds3231/src/
Dmain.c107 uint32_t uptime = k_uptime_get_32(); in min_alarm_handler() local
108 uint16_t ms = uptime % 1000U; in min_alarm_handler()
110 uptime /= 1000U; in min_alarm_handler()
111 uint8_t se = uptime % 60U; in min_alarm_handler()
113 uptime /= 60U; in min_alarm_handler()
114 uint8_t mn = uptime % 60U; in min_alarm_handler()
116 uptime /= 60U; in min_alarm_handler()
117 uint8_t hr = uptime; in min_alarm_handler()
/Zephyr-latest/samples/net/ptp/src/
Dmain.c68 uint32_t uptime = k_uptime_get_32(); in init_testing() local
83 (k_uptime_get_32() - uptime) / 1000); in init_testing()
/Zephyr-latest/samples/net/gptp/src/
Dgptp.c76 uint32_t uptime = k_uptime_get_32(); in init_testing() local
91 (k_uptime_get_32() - uptime) / 1000); in init_testing()
/Zephyr-latest/samples/net/sockets/http_server/src/static_web_resources/
Dmain.js15 const uptime = document.getElementById("uptime");
16 uptime.innerHTML = "Uptime: " + json + " milliseconds"
/Zephyr-latest/tests/kernel/common/src/
Dtimeout_order.c65 uint32_t uptime = k_uptime_get_32(); in ZTEST() local
68 while (uptime == k_uptime_get_32()) { in ZTEST()
/Zephyr-latest/samples/posix/philosophers/src/
Dmain.c119 int32_t uptime; in get_random_delay() local
128 uptime = ts.tv_sec * MSEC_PER_SEC + (ts.tv_nsec / NSEC_PER_MSEC); in get_random_delay()
129 delay = (uptime / 100 * (id + 1)) & 0x1f; in get_random_delay()
/Zephyr-latest/subsys/shell/modules/kernel_service/
DCMakeLists.txt10 uptime.c
Duptime.c51 KERNEL_CMD_ARG_ADD(uptime, NULL, "Kernel uptime. Can be called with the -p or --pretty options",
DKconfig14 This shell provides access to basic kernel data like version, uptime
/Zephyr-latest/samples/drivers/counter/maxim_ds3231/
DKconfig9 If enabled this reads the RTC then sets it so that uptime
DREADME.rst48 second past the hour is written at 1000 ms local uptime::
103 2019-07-19 06:01:00 Fri 200: adj 0.002000000, uptime 0:01:00.002, clk err 34 ppm
104 2019-07-19 06:02:00 Fri 200: adj 0.003000000, uptime 0:02:00.004, clk err 25 ppm
105 2019-07-19 06:03:00 Fri 200: adj 0.005000000, uptime 0:03:00.005, clk err 28 ppm
106 2019-07-19 06:04:00 Fri 200: adj 0.006000000, uptime 0:04:00.007, clk err 25 ppm
107 2019-07-19 06:05:00 Fri 200: adj 0.008000000, uptime 0:05:00.008, clk err 26 ppm
/Zephyr-latest/subsys/bluetooth/mesh/
Dadv_legacy.c52 uint64_t uptime = k_uptime_get(); in bt_data_send() local
62 ARG_UNUSED(uptime); in bt_data_send()
121 LOG_DBG("Advertising stopped (%u ms)", (uint32_t) k_uptime_delta(&uptime)); in bt_data_send()
Dbeacon.c169 uint64_t uptime = k_uptime_get(); in private_random_update() local
177 uptime - priv_random.timestamp < (10 * interval * MSEC_PER_SEC) && in private_random_update()
192 priv_random.timestamp = uptime; in private_random_update()
/Zephyr-latest/drivers/sensor/explorir_m/
Dexplorir_m.c83 uint32_t uptime; in explorir_m_uart_flush_until_end() local
85 uptime = k_uptime_get_32(); in explorir_m_uart_flush_until_end()
86 while (k_uptime_get_32() - uptime < EXPLORIR_M_MAX_RESPONSE_DELAY) { in explorir_m_uart_flush_until_end()
/Zephyr-latest/subsys/logging/backends/
DKconfig.net72 bool "RFC 5424 chapter 7.3.2 system uptime field"
75 The system uptime parameter tracks the "time (in hundredths of a
78 system uptime.
/Zephyr-latest/samples/boards/nordic/system_off/
DREADME.rst18 number of times system off was entered, and total uptime since initial power-on
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/many_conns/src/
Dmain.c354 uint32_t uptime = k_uptime_get_32(); in bt_test_l2cap_data_pull_spy() local
362 last_pull_time = uptime; in bt_test_l2cap_data_pull_spy()
366 ASSERT(uptime == last_pull_time, in bt_test_l2cap_data_pull_spy()
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_suspend.c64 static int64_t uptime; in msg_handler() local
77 if (SUSPEND_DURATION * 1000ll <= k_uptime_delta(&uptime)) { in msg_handler()
88 uptime = k_uptime_get(); in msg_handler()
/Zephyr-latest/subsys/mgmt/ec_host_cmd/
Dec_host_cmd_handler.c173 int64_t uptime = k_uptime_get(); in ec_host_cmd_dump_suppressed() local
175 LOG_PRINTK("[%llds HC Suppressed:", uptime / 1000U); in ec_host_cmd_dump_suppressed()
183 suppressed_cmds_deadline = uptime + CONFIG_EC_HOST_CMD_LOG_SUPPRESSED_INTERVAL_SECS * 1000U; in ec_host_cmd_dump_suppressed()
/Zephyr-latest/samples/boards/phytec/reel_board/mesh_badge/src/
Dreel_board.c475 uint32_t uptime = k_uptime_get_32(); in button_interrupt() local
478 if (uptime - press_ts < 500) { in button_interrupt()
484 press_ts = uptime; in button_interrupt()
/Zephyr-latest/drivers/timer/
DKconfig25 bool "Timer allowed to skew uptime clock during idle"
28 correct system uptime count when the system enters idle.
/Zephyr-latest/doc/kernel/services/timing/
Dclocks.rst36 uptime and timeout bookkeeping. Interrupts are expected to be
74 The kernel tracks a system uptime count on behalf of the application.
76 provides an uptime value in milliseconds since system boot. This is
127 being 32 bits. Large uptime counts in non-tick units will experience
134 indicates a timeout that will expire after the system uptime reaches
330 an uptime tick at which it will expire. So such a loop might look like:
/Zephyr-latest/doc/connectivity/networking/api/
Dnet_timeout.rst13 Zephyr's network infrastructure mostly uses the millisecond-resolution uptime

12