Home
last modified time | relevance | path

Searched +full:100 +full:th (Results 1 – 24 of 24) sorted by relevance

/Zephyr-latest/tests/net/tcp/src/
Dmain.c126 static void handle_client_test(sa_family_t af, struct tcphdr *th);
127 static void handle_server_test(sa_family_t af, struct tcphdr *th);
129 static void handle_syn_rst_ack(sa_family_t af, struct tcphdr *th);
130 static void handle_client_fin_wait_2_test(sa_family_t af, struct tcphdr *th);
131 static void handle_client_fin_wait_2_failure_test(sa_family_t af, struct tcphdr *th);
132 static void handle_client_closing_test(sa_family_t af, struct tcphdr *th);
133 static void handle_client_closing_failure_test(sa_family_t af, struct tcphdr *th);
134 static void handle_data_fin1_test(sa_family_t af, struct tcphdr *th);
135 static void handle_data_during_fin1_test(sa_family_t af, struct tcphdr *th);
137 static void handle_server_rst_on_closed_port(sa_family_t af, struct tcphdr *th);
[all …]
/Zephyr-latest/tests/posix/common/src/
Dmutex.c13 #define SLEEP_MS 100
21 /* Sleep for maximum 300 ms as main thread is sleeping for 100 ms */ in normal_mutex_entry()
49 pthread_t th; in test_mutex_common() local
79 zassert_ok(pthread_create(&th, NULL, entry, NULL)); in test_mutex_common()
84 zassert_ok(pthread_join(th, NULL)); in test_mutex_common()
164 #define TIMEDLOCK_TIMEOUT_DELAY_MS 100
166 BUILD_ASSERT(TIMEDLOCK_TIMEOUT_DELAY_MS >= 100, "TIMEDLOCK_TIMEOUT_DELAY_MS too small");
195 pthread_t th; in ZTEST() local
201 zassert_ok(pthread_create(&th, NULL, test_mutex_timedlock_fn, &mutex)); in ZTEST()
202 zassert_ok(pthread_join(th, &ret)); in ZTEST()
[all …]
/Zephyr-latest/tests/lib/c_lib/thrd/src/
Dmtx.c23 static thrd_t th; variable
86 #define TIMEDLOCK_TIMEOUT_DELAY_MS 100
88 BUILD_ASSERT(TIMEDLOCK_TIMEOUT_DELAY_MS >= 100, "TIMEDLOCK_TIMEOUT_DELAY_MS too small");
116 zassert_equal(thrd_success, thrd_create(&th, mtx_timedlock_fn, &mutex)); in ZTEST()
117 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST()
121 printk("Expecting timedlock with timeout of %d ms to succeed after 100ms\n", in ZTEST()
123 zassert_equal(thrd_success, thrd_create(&th, mtx_timedlock_fn, &mutex)); in ZTEST()
127 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST()
149 zassert_equal(thrd_success, thrd_create(&th, mtx_trylock_fn, &mutex)); in ZTEST()
150 zassert_equal(thrd_success, thrd_join(th, &ret)); in ZTEST()
/Zephyr-latest/samples/net/sockets/echo_server/src/ws_console/
Dstyle.css12 table, th, td { selector
17 th, td { selector
21 th { selector
55 width: 100%;
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome.css80 --toc-max-height: calc(100vh - 2 * var(--spacing-medium) - 85px);
196 --odd-color: rgba(100,100,100,.06);
257 --odd-color: rgba(100,100,100,.06);
725 width: calc(100vw - 30px);
733 width: calc(100vw - 110px);
992 100px 0 var(--page-background-color),
993 -100px 0 var(--page-background-color),
994 100px 0.75px var(--separator-color),
995 -100px 0.75px var(--separator-color),
1075 max-width: 100%;
[all …]
/Zephyr-latest/dts/bindings/input/
Despressif,esp32-touch-sensor.yaml125 Touch sensor channel sensibility in 100th.
/Zephyr-latest/tests/benchmarks/sched/src/
Dmain.c125 k_tid_t th = k_thread_create(&partner_thread, partner_stack, in main() local
131 k_sleep(K_MSEC(100)); in main()
144 z_ready_thread(th); in main()
/Zephyr-latest/drivers/sensor/adi/adxl367/
Dadxl367.c30 * @param th - Structure holding the activity threshold information:
37 const struct adxl367_activity_threshold *th) in adxl367_setup_activity_detection() argument
46 FIELD_PREP(ADXL367_ACT_INACT_CTL_ACT_EN_MSK, th->enable) | in adxl367_setup_activity_detection()
48 th->referenced)); in adxl367_setup_activity_detection()
54 FIELD_PREP(ADXL367_THRESH_H_MSK, th->value >> 6)); in adxl367_setup_activity_detection()
60 FIELD_PREP(ADXL367_THRESH_L_MSK, th->value & 0x3F)); in adxl367_setup_activity_detection()
67 * @param th - Structure holding the inactivity threshold information:
75 const struct adxl367_activity_threshold *th) in adxl367_setup_inactivity_detection() argument
84 th->enable) | in adxl367_setup_inactivity_detection()
86 th->referenced)); in adxl367_setup_inactivity_detection()
[all …]
/Zephyr-latest/subsys/net/ip/
Dtcp.c35 #define ACK_DELAY K_MSEC(100)
153 struct tcphdr *th = NULL; in th_get() local
162 if (!net_pkt_is_contiguous(pkt, sizeof(*th))) { in th_get()
163 if (tcp_pkt_linearize(pkt, ip_len, sizeof(*th)) < 0) { in th_get()
170 th = net_pkt_cursor_get_pos(pkt); in th_get()
172 return th; in th_get()
190 struct tcphdr *th; in tcp_endpoint_set() local
192 th = th_get(pkt); in tcp_endpoint_set()
193 if (!th) { in tcp_endpoint_set()
199 ep->sin.sin_port = src == TCP_EP_SRC ? th_sport(th) : in tcp_endpoint_set()
[all …]
/Zephyr-latest/samples/subsys/nvs/src/
Dmain.c23 * At the 10th reboot the string item with id=4 is deleted (or marked for
26 * At the 11th reboot the string item with id=4 can no longer be read with the
30 * At the 78th reboot the first sector is full and a new sector is taken into
56 #define SLEEP_TIME 100
/Zephyr-latest/doc/_static/css/
Dcustom.css141 width: 100%;
230 min-height: 100vh;
231 min-height: 100dvh;
250 .wy-table thead th,
251 .rst-content table.docutils thead th,
252 .rst-content table.field-list thead th {
268 .wy-table-responsive table th:not(:nth-child(1)) {
274 .wy-table-responsive table.wrap-normal th {
283 /* Force table content font-size in responsive tables to be 100%
286 font-size: 100%;
[all …]
/Zephyr-latest/drivers/sensor/st/iis2dlpc/
Diis2dlpc.c141 static int iis2dlpc_set_slope_th(const struct device *dev, uint16_t th) in iis2dlpc_set_slope_th() argument
147 err = iis2dlpc_wkup_threshold_set(ctx, th & 0x3F); in iis2dlpc_set_slope_th()
150 th & 0x3F, err); in iis2dlpc_set_slope_th()
305 k_busy_wait(100); in iis2dlpc_init()
/Zephyr-latest/tests/subsys/fs/nvs/src/
Dmain.c257 /* 25th write will trigger GC. */ in ZTEST_F()
353 /* 50th write will trigger 1st GC. */ in ZTEST_F()
355 /* 75th write will trigger 2st GC. */ in ZTEST_F()
357 /* 100th write will trigger 3st GC. */ in ZTEST_F()
359 /* 125th write will trigger 4st GC. */ in ZTEST_F()
414 /* Trigger 4th GC */ in ZTEST_F()
475 /* 25th write will trigger GC. */ in ZTEST_F()
/Zephyr-latest/samples/modules/canopennode/objdict/
Dobjdict.xml75 …<CANopenObject index="100a" name="Manufacturer software version" objectType="VAR" memoryType="ROM"…
78 …<CANopenObject index="100c" name="Guard Time" objectType="VAR" memoryType="ROM" dataType="0x06" ac…
79 …<description>The objects at index 100Ch and 100Dh include the guard time in milliseconds and the l…
86 …<CANopenObject index="100d" name="Life time factor" objectType="VAR" memoryType="RAM" dataType="0x…
129 …ryType="ROM" dataType="0x06" accessType="rw" PDOmapping="no" defaultValue="100" subNumber="0" disa…
130 <description>bit 0-15: Inhibit time of emergency message in 100µs</description>
556 value = 1-240: transmitting is synchronous after every N-th SYNC object
563 bit 0-15: Minimum time between transmissions of the PDO in 100µs. Zero disables functionality.
605 value = 1 - 240: transmitting is synchronous after every N - th SYNC object
612 bit 0 - 15: Minimum time between transmissions of the PDO in 100µs.Zero disables functionality.
[all …]
/Zephyr-latest/drivers/i2c/
Di2c_mchp_xec.c35 #define WAIT_LINE_HIGH_COUNT 100
74 * bus_clk_reg (16MHz/100KHz -2) = 0x4F + 0x4F
230 * PIN == 0: I2C Status LRB is valid and contains ACK/NACK data on 9th clock.
266 /* PIN == 0. LRB contains state of 9th bit */ in wait_completion()
/Zephyr-latest/drivers/ethernet/dwc_xgmac/
Deth_dwc_xgmac_priv.h320 /* 0th index mac address is not used for L2 filtering */
363 (100) /* retry up to 100ms (1 x 100ms poll interval) */
680 * plus all link speeds supported by the controller (10/100/1000).
686 LINK_100MBIT = 100,
/Zephyr-latest/subsys/bluetooth/mesh/
DKconfig290 range 100 800
809 default 100
1658 default 100
1676 terminated. The value is in units of 100 milliseconds, so e.g.
1687 in value for each iteration. The value is in units of 100
1845 updated in persistent storage (i.e. flash). E.g. a value of 100
1847 100th increment. If the node sends messages very frequently a
/Zephyr-latest/samples/modules/tflite-micro/hello_world/train/
Dtrain_hello_world_model.ipynb643 "Epoch 100/500\n",
1976 "Epoch 100/500\n",
2841 "SKIP = 100\n",
3207 " .dataframe tbody tr th:only-of-type {\n",
3211 " .dataframe tbody tr th {\n",
3215 " .dataframe thead th {\n",
3222 " <th></th>\n",
3223 " <th>Loss/MSE</th>\n",
3226 " <th>Model</th>\n",
3227 " <th></th>\n",
[all …]
/Zephyr-latest/drivers/ieee802154/
Dieee802154_dw1000_regs.h87 /* Frame Filtering Allow frames with frame type field of 4, (binary 100) */
1789 /* Assuming only 4th byte of the register is read */
1791 /* Assuming only 4th byte of the register is read */
1793 /* Assuming only 4th byte of the register is read */
/Zephyr-latest/drivers/led/
Dlp5562.c84 #define LP5562_MAX_BRIGHTNESS 100
630 * In each step the PWM value is increased or decreased by 1/255th until the
/Zephyr-latest/doc/releases/
Drelease-notes-3.0.rst517 * mimxrt11xx: Added support for 10/100M ENET
890 * :github:`42585' - 3.0.0-rc1: warning: LOG_STRDUP_MAX_STRING was assigned the value '100` but got …
1019 * :github:`41509` - OpenThread's timer processing enters infinite loop in 49th day of system uptime
1273 * :github:`39487` - esp32 IRQ01 stack utilisation is 100%
/Zephyr-latest/drivers/i3c/
Di3c_mcux.c871 k_busy_wait(100); in mcux_i3c_recover_bus()
1205 ret = mcux_i3c_state_wait_timeout(base, I3C_MSTATUS_STATE_IDLE, 100, 100000); in mcux_i3c_do_daa()
1677 * The MSB (7th bit) is captured separated in another bit in mcux_i3c_ibi_enable()
Di3c_npcx.c116 #define I3C_TRANS_TIMEOUT_MS K_MSEC(100)
702 k_busy_wait(100); in npcx_i3c_recover_bus()
1812 * The MSB (7th bit) is captured separated in another bit in npcx_i3c_ibi_enable()
/Zephyr-latest/drivers/modem/
Dhl7800.c203 #define MDM_HANDLER_MATCH_MAX_LEN 100
254 #define SOCKET_CLEANUP_WORK_DELAY K_MSEC(100)
3737 /* the 4th ',' (last in the msg) is the start of the SINR */ in on_cmd_atcmdinfo_rssi()