Home
last modified time | relevance | path

Searched refs:seconds (Results 1 – 25 of 69) sorted by relevance

123

/hal_espressif-2.7.6/examples/storage/nvs_rw_value_cxx/
DREADME.md36 Restarting in 10 seconds...
37 Restarting in 9 seconds...
38 Restarting in 8 seconds...
39 Restarting in 7 seconds...
40 Restarting in 6 seconds...
41 Restarting in 5 seconds...
42 Restarting in 4 seconds...
43 Restarting in 3 seconds...
44 Restarting in 2 seconds...
45 Restarting in 1 seconds...
[all …]
/hal_espressif-2.7.6/examples/storage/nvs_rw_value/
DREADME.md42 Restarting in 10 seconds...
43 Restarting in 9 seconds...
44 Restarting in 8 seconds...
45 Restarting in 7 seconds...
46 Restarting in 6 seconds...
47 Restarting in 5 seconds...
48 Restarting in 4 seconds...
49 Restarting in 3 seconds...
50 Restarting in 2 seconds...
51 Restarting in 1 seconds...
[all …]
/hal_espressif-2.7.6/examples/build_system/cmake/idf_as_lib/
DREADME.md24 Restarting in 10 seconds...
25 Restarting in 9 seconds...
26 Restarting in 8 seconds...
27 Restarting in 7 seconds...
28 Restarting in 6 seconds...
29 Restarting in 5 seconds...
30 Restarting in 4 seconds...
31 Restarting in 3 seconds...
32 Restarting in 2 seconds...
33 Restarting in 1 seconds...
[all …]
/hal_espressif-2.7.6/examples/wifi/simple_sniffer/components/pcap/
Dpcap.c54 uint32_t seconds; /*!< Number of seconds since January 1st, 1970, 00:00:00 GMT */ member
68 …re_packet(pcap_handle_t handle, void *payload, uint32_t length, uint32_t seconds, uint32_t microse… in pcap_capture_packet() argument
75 .seconds = seconds, in pcap_capture_packet()
Dpcap.h101 …re_packet(pcap_handle_t handle, void *payload, uint32_t length, uint32_t seconds, uint32_t microse…
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/aligenie_demo/components/vendor_model/
Dgenie_timer.c226 utc.seconds = sec; in convert_unix_to_utc()
247 return ((days * 24 + utc_time->hour) * 60 + utc_time->minutes) * 60 + utc_time->seconds; in convert_utc_to_unix()
315 local_time.seconds++; in seconds_update()
317 if (local_time.seconds == 60) { in seconds_update()
318 local_time.seconds = 0; in seconds_update()
632 utc.seconds = 0; in genie_timer_periodic_start()
710 local_time.hour, local_time.minutes, local_time.seconds, in genie_timer_local_time_show()
786 local_time.hour, local_time.minutes, local_time.seconds, in genie_timer_local_time_update()
/hal_espressif-2.7.6/docs/zh_CN/get-started/
Dindex.rst549 Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 5962.8 kbit/s)...
553 … Wrote 26096 bytes (15408 compressed) at 0x00001000 in 0.4 seconds (effective 546.7 kbit/s)...
561 … Wrote 147104 bytes (77364 compressed) at 0x00010000 in 1.9 seconds (effective 615.5 kbit/s)...
589 Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 3851.6 kbit/s)...
593 … Wrote 22592 bytes (13483 compressed) at 0x00001000 in 0.3 seconds (effective 595.1 kbit/s)...
601 … Wrote 140048 bytes (70298 compressed) at 0x00010000 in 1.7 seconds (effective 662.5 kbit/s)...
629 Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 4238.1 kbit/s)...
633 … Wrote 18960 bytes (11311 compressed) at 0x00000000 in 0.3 seconds (effective 584.9 kbit/s)...
641 … Wrote 145520 bytes (71984 compressed) at 0x00010000 in 2.3 seconds (effective 504.4 kbit/s)...
680 Restarting in 10 seconds...
[all …]
/hal_espressif-2.7.6/examples/cxx/experimental/esp_event_async_cxx/main/
Desp_event_async_cxx_example.cpp84 this_thread::sleep_for(chrono::seconds(1)); in app_main()
106 this_thread::sleep_for(chrono::seconds(1)); in app_main()
/hal_espressif-2.7.6/docs/zh_CN/get-started-legacy/
Dindex.rst335 Wrote 26704 bytes (15930 compressed) at 0x00001000 in 1.4 seconds (effective 151.9 kbit/s)...
338 Wrote 147984 bytes (77738 compressed) at 0x00010000 in 6.9 seconds (effective 172.7 kbit/s)...
341 Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 1607.9 kbit/s)...
377 Restarting in 10 seconds...
378 Restarting in 9 seconds...
379 Restarting in 8 seconds...
380 Restarting in 7 seconds...
/hal_espressif-2.7.6/examples/bluetooth/esp_hid_device/main/
Desp_hid_gap.c434 static esp_err_t start_bt_scan(uint32_t seconds) in start_bt_scan() argument
437 …if ((ret = esp_bt_gap_start_discovery(ESP_BT_INQ_MODE_GENERAL_INQUIRY, (int)(seconds / 1.28), 0)) … in start_bt_scan()
559 static esp_err_t start_ble_scan(uint32_t seconds) in start_ble_scan() argument
568 if ((ret = esp_ble_gap_start_scanning(seconds)) != ESP_OK) { in start_ble_scan()
767 esp_err_t esp_hid_scan(uint32_t seconds, size_t *num_results, esp_hid_scan_result_t **results) in esp_hid_scan() argument
774 if (start_ble_scan(seconds) == ESP_OK) { in esp_hid_scan()
775 if (start_bt_scan(seconds) == ESP_OK) { in esp_hid_scan()
Desp_hid_gap.h55 esp_err_t esp_hid_scan(uint32_t seconds, size_t *num_results, esp_hid_scan_result_t **results);
/hal_espressif-2.7.6/examples/bluetooth/esp_hid_host/main/
Desp_hid_gap.c434 static esp_err_t start_bt_scan(uint32_t seconds) in start_bt_scan() argument
437 …if ((ret = esp_bt_gap_start_discovery(ESP_BT_INQ_MODE_GENERAL_INQUIRY, (int)(seconds / 1.28), 0)) … in start_bt_scan()
559 static esp_err_t start_ble_scan(uint32_t seconds) in start_ble_scan() argument
568 if ((ret = esp_ble_gap_start_scanning(seconds)) != ESP_OK) { in start_ble_scan()
767 esp_err_t esp_hid_scan(uint32_t seconds, size_t *num_results, esp_hid_scan_result_t **results) in esp_hid_scan() argument
774 if (start_ble_scan(seconds) == ESP_OK) { in esp_hid_scan()
775 if (start_bt_scan(seconds) == ESP_OK) { in esp_hid_scan()
Desp_hid_gap.h55 esp_err_t esp_hid_scan(uint32_t seconds, size_t *num_results, esp_hid_scan_result_t **results);
/hal_espressif-2.7.6/examples/ethernet/iperf/
DREADME.md59 …un command: `iperf -u -s -i 3` to start iperf server in UDP mode, and report interval is 3 seconds.
60 …iperf -u -c PC_IP -i 3 -t 30` to start iperf client in UDP mode, and the test will last 30 seconds.
103 … to start iperf client in UDP mode with estimated bandwidth 100M, and report interval is 3 seconds.
104 …and: `iperf -u -s -t 30 -i 3` to start iperf server in UDP mode, and the test will last 30 seconds.
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/common_components/button/
DREADME.md8 …* Serial threshold seconds which decides that serial trigger callback will be called after how man…
/hal_espressif-2.7.6/components/newlib/
Dtime.c220 unsigned int sleep(unsigned int seconds) in sleep() argument
222 usleep(seconds*1000000UL); in sleep()
/hal_espressif-2.7.6/components/bt/host/bluedroid/external/sbc/decoder/include/
Doi_time.h92 OI_INT32 seconds; member
/hal_espressif-2.7.6/components/wifi_provisioning/
DKconfig15 … Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to
/hal_espressif-2.7.6/examples/wifi/simple_sniffer/main/
Dcmd_sniffer.c65 uint32_t seconds; member
126 packet_info.seconds = sniffer->rx_ctrl.timestamp / 1000000U; in wifi_sniffer_cb()
159 packet_info.seconds, packet_info.microseconds) != ESP_OK) { in sniffer_task()
/hal_espressif-2.7.6/components/newlib/test/
Dtest_newlib.c207 const time_t seconds = 1584039600; variable
210 struct tm *tm = localtime(&seconds);
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/aligenie_demo/components/vendor_model/include/
Dgenie_timer.h37 volatile uint8_t seconds; // 0-59 member
/hal_espressif-2.7.6/examples/protocols/sntp/
Dexample_test.py24 TIME_DIFF = datetime.timedelta(seconds=10 + 2) # cpu spends 10 seconds in deep sleep
/hal_espressif-2.7.6/examples/cxx/experimental/esp_event_cxx/main/
Desp_event_cxx_example.cpp36 this_thread::sleep_for(chrono::seconds(1)); in post_events()
/hal_espressif-2.7.6/examples/cxx/pthread/main/
Dcpp_pthread.cpp23 const auto sleep_time = seconds
/hal_espressif-2.7.6/examples/system/light_sleep/
DREADME.md9 - Timer: wake up the chip in 2 seconds
57 In the scenario above, the button attached to GPIO0 was pressed and held for about 3 seconds, after…

123