Home
last modified time | relevance | path

Searched refs:parse_result (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/examples/peripherals/rmt/ir_protocols/components/infrared_tools/src/
Dir_parser_rmt_rc5.c79 uint32_t parse_result = 0; // 32 bit is enough to hold the parse result of one RC5 frame in rc5_parser_get_scan_code() local
90 parse_result <<= 1; in rc5_parser_get_scan_code()
91 parse_result |= exchange; in rc5_parser_get_scan_code()
96 parse_result <<= 1; in rc5_parser_get_scan_code()
97 parse_result |= rc5_parser->buffer[i].level0; in rc5_parser_get_scan_code()
98 parse_result <<= 1; in rc5_parser_get_scan_code()
99 parse_result |= !rc5_parser->buffer[i].level0; in rc5_parser_get_scan_code()
108 parse_result = ~parse_result; in rc5_parser_get_scan_code()
110 s1 = ((parse_result & 0x2000) >> 13) & 0x01; in rc5_parser_get_scan_code()
111 s2 = ((parse_result & 0x1000) >> 12) & 0x01; in rc5_parser_get_scan_code()
[all …]
/hal_espressif-3.6.0/components/esp_eth/test_apps/
Dcomponent_ut_test.py101 ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
104 ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
108 ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
120 ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
145 ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
/hal_espressif-3.6.0/components/esp_netif/test_apps/
Dcomponent_ut_test.py11 ttfw_idf.ComponentUTResult.parse_result(stdout)
/hal_espressif-3.6.0/components/newlib/test_apps/
Dapp_test.py15 ttfw_idf.ComponentUTResult.parse_result(stdout)
/hal_espressif-3.6.0/tools/ci/python_packages/ttfw_idf/
D__init__.py240 def parse_result(stdout, test_format=TestFormat.UNITY_FIXTURE_VERBOSE): member in ComponentUTResult