/hal_espressif-3.6.0/components/bt/host/bluedroid/external/sbc/decoder/include/ |
D | oi_assert.h | 50 #define OI_ASSERT(condition) \ argument 51 { if (!(condition)) OI_AssertFail(__FILE__, __LINE__, #condition); } 59 #define OI_ASSERT(condition)
|
/hal_espressif-3.6.0/tools/ldgen/ |
D | fragments.py | 60 for condition in conditions: 62 _toks = condition[1] 63 _cond = condition[0] 68 expand_conditionals(condition[0], stmts) 99 condition = originalTextFor(SDKConfig.get_expression_grammar()).setResultsName('condition') 100 if_condition = Group(Suppress('if') + condition + Suppress(':') + condition_block) 101 elif_condition = Group(Suppress('elif') + condition + Suppress(':') + condition_block) 148 fragment_if_condition = Group(Suppress('if') + condition + Suppress(':') + fragment_block) 149 … fragment_elif_condition = Group(Suppress('elif') + condition + Suppress(':') + fragment_block) 573 condition = next(iter(entries.condition.asList())).strip() [all …]
|
D | sdkconfig.py | 66 condition = Group(Optional('(').suppress() + test + Optional(')').suppress()) 68 grammar = infixNotation(condition, [
|
/hal_espressif-3.6.0/components/espcoredump/include_core_dump/ |
D | esp_core_dump_types.h | 39 #define ESP_COREDUMP_ASSERT( condition ) if(!(condition)){ abort(); } else { } argument 44 #define ESP_COREDUMP_DEBUG_ASSERT( condition ) assert(condition) argument
|
/hal_espressif-3.6.0/components/heap/ |
D | multi_heap_platform.h | 50 inline static void multi_heap_assert(bool condition, const char *format, int line, intptr_t address) in multi_heap_assert() argument 57 if(!condition) { in multi_heap_assert() 64 (void) condition; in multi_heap_assert()
|
/hal_espressif-3.6.0/tools/unit-test-app/tools/ |
D | UnitTestParser.py | 199 def process_condition(condition): argument 200 matches = config_pattern.findall(condition) 205 condition = re.sub(config_pattern, str(compare_result), condition, count=1) 207 ret = eval(condition) 210 ret = compare_config(condition)
|
/hal_espressif-3.6.0/components/driver/test/ |
D | test_rtcio.c | 26 #define RTCIO_CHECK(condition) TEST_ASSERT_MESSAGE((condition == ESP_OK), "ret is not ESP_OK") argument 27 #define RTCIO_VERIFY(condition, msg) TEST_ASSERT_MESSAGE((condition), msg) argument
|
/hal_espressif-3.6.0/components/sdmmc/ |
D | sdmmc_init.c | 22 #define SDMMC_INIT_STEP(condition, function) \ argument 24 if ((condition)) { \
|
/hal_espressif-3.6.0/components/esptool_py/ |
D | project_include.cmake | 302 # - condition is the expression evaluated to a boolean 303 # - condtrue is the expression to evaluate if condition is true 304 # - condfalse is the expression to evaluate if condition is false 306 # retexpr = condition ? condtrue : condfalse 307 function(if_expr_generator retexpr condition condtrue condfalse) 313 # condition is true. Generate the expression that will be used in that 316 set(iftrue "$<${condition}:${condtrue}>") 322 set(iffalse "$<$<NOT:${condition}>:${condfalse}>") 333 set(${retexpr} "$<IF:${condition},${condtrue},${condfalse}>" PARENT_SCOPE)
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | error-handling.rst | 51 …xcept that it checks :cpp:type:`esp_err_t` value rather than a ``bool`` condition. If the argument… 97 :cpp:func:`ESP_RETURN_ON_FALSE` macro checks the condition, if the condition is not equal `true`, i… 104 :cpp:func:`ESP_GOTO_ON_FALSE` macro checks the condition, if the condition is not equal `true`, it … 140 …o de-initialize the driver and re-initialize it again, or fix the error condition using an out-of-…
|
D | ulp_instruction_set.rst | 471 **JUMPR** – Jump to a relative offset (condition based on R0) 479 - *Threshold* – threshold value for branch condition 512 …The instruction makes a jump to a relative address if condition is true. Condition is the result o… 526 **JUMPS** – Jump to a relative address (condition based on stage count) 534 - *Threshold* – threshold value for branch condition 563 …The instruction makes a jump to a relative address if condition is true. Condition is the result o…
|
D | ulps2_instruction_set.rst | 710 **JUMPR** – Jump to a relative offset (condition based on R0) 718 - *Threshold* – threshold value for branch condition 744 …The instruction makes a jump to a relative address if condition is true. Condition is the result o… 758 **JUMPS** – Jump to a relative address (condition based on stage count) 766 - *Threshold* – threshold value for branch condition 793 …The instruction makes a jump to a relative address if condition is true. Condition is the result o…
|
/hal_espressif-3.6.0/components/bootloader_support/src/ |
D | bootloader_common_loader.c | 97 …uint32_t condition = (max == true) ? MAX(two_otadata[0].ota_seq, two_otadata[1].ota_seq) : MIN(two… in bootloader_common_select_otadata() local 98 if (condition == two_otadata[0].ota_seq) { in bootloader_common_select_otadata()
|
/hal_espressif-3.6.0/components/driver/ |
D | Kconfig | 109 … When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the 113 …condition is that both TEC and REC become 0. Enabling this option will add a workaround in the dri… 132 …will reset the peripheral on detection of this errata condition. Note that if a frame is transmitt… 143 …on detection of this errata condition. Note that if a frame is being sent on the bus during the re…
|
/hal_espressif-3.6.0/components/usb/ |
D | maintainers.md | 34 …f a disconnect occurs while a reset condition is being held. The disconnect is not detected until … 36 - Once the reset condition is asserted, a `USBH_HAL_PORT_EVENT_DISABLED` is generated 133 - Some of the port and pipe commands may need to block for a certain condition before the command i…
|
/hal_espressif-3.6.0/docs/en/hw-reference/esp32/ |
D | get-started-devkitc-v2.rst | 72 Before powering up your ESP32-DevKitC V2, please make sure that the board is in good condition with…
|
D | get-started-pico-kit-v3.rst | 66 Before powering up your ESP32-PICO-KIT V3, please make sure that the board is in good condition wit…
|
/hal_espressif-3.6.0/examples/protocols/modbus/tcp/ |
D | README.md | 7 After several successful read attempts slave sets the alarm relay (end of test condition).
|
/hal_espressif-3.6.0/components/esp_hw_support/ |
D | Kconfig | 43 pulse during light sleep, with specific condition
|
/hal_espressif-3.6.0/docs/en/hw-reference/esp32s2/ |
D | user-guide-esp-lyrap-cam-v1.0.rst | 65 Before powering up your ESP-LyraP-CAM, please make sure that it is in good condition with no obviou…
|
D | user-guide-esp-lyrap-cam-v1.1.rst | 67 Before powering up your ESP-LyraP-CAM, please make sure that it is in good condition with no obviou…
|
D | user-guide-esp-lyrap-toucha-v1.1.rst | 66 Before powering up your ESP-LyraP-TouchA, please make sure that it is in good condition with no obv…
|
D | user-guide-esp-lyrap-lcd32-v1.1.rst | 77 Before powering up your ESP-LyraP-LCD32, please make sure that it is in good condition with no obvi…
|
/hal_espressif-3.6.0/examples/protocols/modbus/serial/ |
D | README.md | 7 After several successful read attempts slave sets the alarm relay (end of test condition).
|
/hal_espressif-3.6.0/docs/en/contribute/ |
D | style-guide.rst | 66 if (condition) { // correct 128 if (condition) { 232 … should be true in source code. In the default configuration, an assert condition that returns ``f…
|