| /Zephyr-4.3.0/tests/drivers/i2s/i2s_speed/ |
| D | Kconfig | 42 bool "Skip short transfer tests at 8000 samples per second" 44 When set to 'y', short transfer tests at 8000 samples per second 48 bool "Skip short transfer tests at 16000 samples per second" 50 When set to 'y', short transfer tests at 16000 samples per second 54 bool "Skip short transfer tests at 32000 samples per second" 56 When set to 'y', short transfer tests at 32000 samples per second 60 bool "Skip short transfer tests at 44100 samples per second" 62 When set to 'y', short transfer tests at 44100 samples per second 66 bool "Skip short transfer tests at 48000 samples per second" 68 When set to 'y', short transfer tests at 48000 samples per second [all …]
|
| /Zephyr-4.3.0/include/zephyr/net/ |
| D | ptp_time.h | 130 uint64_t second; member 173 uint64_t second; member 216 if (ts->second >= NET_TIME_SEC_MAX) { in net_ptp_time_to_ns() 220 return ((int64_t)ts->second * NSEC_PER_SEC) + ts->nanosecond; in net_ptp_time_to_ns() 237 ts.second = nsec / NSEC_PER_SEC; in ns_to_net_ptp_time()
|
| /Zephyr-4.3.0/samples/boards/nxp/s32/netc/ |
| D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface"
|
| /Zephyr-4.3.0/soc/nxp/lpc/lpc54xxx/ |
| D | Kconfig | 32 bool "LPC54114 Cortex-M0 second core" 34 Driver for second core startup 38 hex "Address the second core will boot at" 41 This is the address the second core will boot from. Additionally this 48 # Move the LMA address of second core into flash
|
| /Zephyr-4.3.0/lib/hash/ |
| D | hash_map_cxx.cpp | 29 it->value = it2->second; in sys_hashmap_cxx_iter_next() 58 cb(kv.first, kv.second, cookie); in sys_hashmap_cxx_clear() 82 *old_value = it->second; in sys_hashmap_cxx_insert() 83 it->second = value; in sys_hashmap_cxx_insert() 113 *value = it->second; in sys_hashmap_cxx_remove() 143 *value = it->second; in sys_hashmap_cxx_get()
|
| /Zephyr-4.3.0/drivers/ptp_clock/ |
| D | ptp_clock_shell.c | 61 shell_print(sh, "%"PRIu64".%09u", tm.second, tm.nanosecond); in cmd_ptp_clock_get() 78 tm.second = shell_strtoull(argv[2], 10, &ret); in cmd_ptp_clock_set() 175 tm.second = seconds; in cmd_ptp_clock_selftest() 181 shell_print(sh, "test1: set time %"PRIu64".%09u", tm.second, tm.nanosecond); in cmd_ptp_clock_selftest() 188 shell_print(sh, " result: read back time %"PRIu64".%09u", tm.second, tm.nanosecond); in cmd_ptp_clock_selftest() 206 shell_print(sh, " result: read back time %"PRIu64".%09u", tm.second, tm.nanosecond); in cmd_ptp_clock_selftest() 221 shell_print(sh, " result: read back time %"PRIu64".%09u", tm.second, tm.nanosecond); in cmd_ptp_clock_selftest()
|
| D | ptp_clock_nxp_enet.c | 42 enet_time.second = tm->second; in ptp_clock_nxp_enet_set() 58 tm->second = enet_time.second; in ptp_clock_nxp_enet_get()
|
| /Zephyr-4.3.0/samples/net/ethernet/lldp/src/ |
| D | main.c | 38 struct net_if *second; member 54 if (!ud->second) { in iface_cb() 55 ud->second = iface; in iface_cb() 128 ret = setup_iface(iface, ud.second, in init_vlan() 138 net_if_up(ud.second); in init_vlan()
|
| /Zephyr-4.3.0/samples/net/virtual/ |
| D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface"
|
| /Zephyr-4.3.0/tests/boards/nrf/comp/boards/ |
| D | nrf54lm20dk_nrf54lm20a_cpuapp.overlay | 4 * second-gpios (P1.30, AIN2) -> AIN1 (P1.31) 17 second-gpios = <&gpio1 30 GPIO_ACTIVE_HIGH>;
|
| /Zephyr-4.3.0/samples/net/ethernet/lldp/ |
| D | Kconfig | 15 string "My IPv6 address for second interface" 20 string "My IPv4 address for second interface" 25 int "VLAN tag for second interface"
|
| /Zephyr-4.3.0/samples/net/common/ |
| D | vlan.c | 18 struct net_if *second; member 40 if (!ud->second) { in iface_cb() 41 ud->second = iface; in iface_cb() 181 ret = setup_iface(user_data.eth, user_data.second, in init_vlan()
|
| /Zephyr-4.3.0/tests/boards/native_sim/rtc/src/ |
| D | main.c | 25 unsigned int second; in us_time_to_str() local 30 second = (time / 1000000U) % 60; in us_time_to_str() 33 sprintf(dest, "%02u:%02u:%02u.%06u", hour, minute, second, us); in us_time_to_str()
|
| /Zephyr-4.3.0/drivers/ethernet/ |
| D | eth_stm32_hal_ptp.c | 45 ctx->pkt->timestamp.second = timestamp->TimeStampHigh; in HAL_ETH_TxPtpCallback() 75 heth->Instance->MACSTSUR = tm->second; in ptp_clock_stm32_set() 82 heth->Instance->PTPTSHUR = tm->second; in ptp_clock_stm32_set() 107 tm->second = heth->Instance->MACSTSR; in ptp_clock_stm32_get() 111 tm->second = heth->Instance->PTPTSHR; in ptp_clock_stm32_get() 118 if (tm->second != second_2 && tm->nanosecond < NSEC_PER_SEC / 2) { in ptp_clock_stm32_get() 123 tm->second = second_2; in ptp_clock_stm32_get()
|
| D | eth_native_tap_priv.h | 17 int eth_clock_gettime(uint64_t *second, uint32_t *nanosecond);
|
| D | eth_native_tap_adapt.c | 120 int eth_clock_gettime(uint64_t *second, uint32_t *nanosecond) in eth_clock_gettime() argument 130 *second = (uint64_t)tp.tv_sec; in eth_clock_gettime()
|
| /Zephyr-4.3.0/samples/net/sockets/echo_client/ |
| D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 int "VLAN tag for second interface"
|
| /Zephyr-4.3.0/tests/net/socket/af_packet/src/ |
| D | main.c | 226 struct net_if *second; member 249 test_data->second = iface; in iface_cb() 292 prepare_packet_socket(&packet_sock_2, ud.second, NET_SOCK_RAW, net_htons(ETH_P_ALL)); in ZTEST() 345 prepare_packet_socket(&packet_sock_2, ud.second, NET_SOCK_RAW, net_htons(ETH_P_ALL)); in ZTEST() 355 prepare_packet_socket(&packet_sock_2, ud.second, NET_SOCK_DGRAM, net_htons(ETH_P_TSN)); in ZTEST() 428 .sll_ifindex = net_if_get_by_iface(ud.second), in ZTEST() 485 prepare_packet_socket(&packet_sock_2, ud.second, NET_SOCK_RAW, net_htons(ETH_P_ALL)); in ZTEST() 546 prepare_packet_socket(&packet_sock_2, ud.second, NET_SOCK_RAW, net_htons(ETH_P_ALL)); in ZTEST() 547 prepare_packet_socket(&packet_sock_3, ud.second, NET_SOCK_DGRAM, net_htons(ETH_P_ALL)); in ZTEST() 666 bind_packet_socket(packet_sock_1, ud.second); in test_sendto_common() [all …]
|
| /Zephyr-4.3.0/tests/modules/thrift/ThriftTest/src/ |
| D | server.hpp | 110 printf("%d => %d", m_iter->first, m_iter->second); in testMap() 130 printf("%s => %s", (m_iter->first).c_str(), (m_iter->second).c_str()); in testStringMap() 227 for (i2_iter = i_iter->second.begin(); i2_iter != i_iter->second.end(); in testInsanity() 230 map<Numberz::type, UserId> userMap = i2_iter->second.userMap; in testInsanity() 235 printf("%d => %" PRId64 ", ", um->first, um->second); in testInsanity() 239 vector<Xtruct> xtructs = i2_iter->second.xtructs; in testInsanity()
|
| /Zephyr-4.3.0/samples/net/ethernet/gptp/ |
| D | Kconfig | 18 string "My IPv6 address for second interface" 23 string "My IPv4 address for second interface" 28 int "VLAN tag for second interface"
|
| /Zephyr-4.3.0/soc/nxp/lpc/lpc55xxx/ |
| D | Kconfig | 78 bool "LPC55xxx's second core" 82 hex "Address the second core will boot at" 85 This is the address the second core will boot from.
|
| /Zephyr-4.3.0/samples/drivers/counter/alarm/ |
| D | README.rst | 14 In case of 1Hz frequency (RTC for example), precision is 1 second. 15 Therefore, the sample output may differ in 1 second
|
| /Zephyr-4.3.0/samples/net/sockets/echo_server/ |
| D | Kconfig | 16 string "My IPv6 address for second interface" 21 string "My IPv4 address for second interface" 26 string "My IPv4 netmask for second interface"
|
| /Zephyr-4.3.0/samples/drivers/led/lp5569/ |
| D | README.rst | 11 all LEDs on one by one with a 1 second delay between each. Then it fades all 13 a second, and turns them all back off.
|
| /Zephyr-4.3.0/samples/sensor/max6675/ |
| D | README.rst | 40 The application will read and print sensor temperature every second. Note that 49 <repeats endlessly every second>
|