Home
last modified time | relevance | path

Searched refs:hc (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/examples/peripherals/mcpwm/mcpwm_capture_hc_sr04/
DREADME.md63 I (314) hc-sr04: HC-SR04 example based on capture function from MCPWM
64 I (324) hc-sr04: Echo pin configured
66 I (334) hc-sr04: Trig pin configured
67 I (344) hc-sr04: trig task started
68 I (444) hc-sr04: Pulse width: 419us, Measured distance: 7.22cm
69 I (544) hc-sr04: Pulse width: 419us, Measured distance: 7.22cm
70 I (644) hc-sr04: Pulse width: 416us, Measured distance: 7.17cm
71 I (744) hc-sr04: Pulse width: 415us, Measured distance: 7.16cm
72 I (844) hc-sr04: Pulse width: 415us, Measured distance: 7.16cm
73 I (944) hc-sr04: Pulse width: 416us, Measured distance: 7.17cm
[all …]
/hal_espressif-3.6.0/components/esp_rom/patches/
Desp_rom_tjpgd.c212 uint16_t hc, *ph; in create_huffman_tbl() local
232 hc = 0; in create_huffman_tbl()
235 while (b--) ph[j++] = hc++; in create_huffman_tbl()
236 hc <<= 1; in create_huffman_tbl()
497 const uint16_t *hc; in mcu_load() local
511 hc = jd->huffcode[id][0]; in mcu_load()
513 b = huffext(jd, hb, hc, hd); /* Extract a huffman coded data (bit length) */ in mcu_load()
530 hc = jd->huffcode[id][1]; in mcu_load()
534 b = huffext(jd, hb, hc, hd); /* Extract a huffman coded value (zero runs and bit length) */ in mcu_load()
/hal_espressif-3.6.0/components/console/linenoise/
Dlinenoise.c898 linenoiseHintsCallback *hc = hintsCallback; in linenoiseEdit() local
901 hintsCallback = hc; in linenoiseEdit()
/hal_espressif-3.6.0/components/fatfs/src/
Dff.c840 DWORD hc; in put_utf()
862 hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6; /* Get high 10 bits */ in put_utf()
864 if (hc >= 0x100000 || chr >= 0x400) return 0; /* Wrong surrogate? */ in put_utf()
865 chr = (hc | chr) + 0x10000; in put_utf()
873 DWORD hc; in put_utf()
877 hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6; /* Get high 10 bits */ in put_utf()
879 if (hc >= 0x100000 || chr >= 0x400) return 0; /* Wrong surrogate? */ in put_utf()
880 chr = (hc | chr) + 0x10000; in put_utf()