Home
last modified time | relevance | path

Searched refs:old (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dcompare_stubs.py26 old = esptool.loader.StubFlasher(path_to_old)
28 if new.data_start != old.data_start:
30 new.data_start, old.data_start
32 if new.text_start != old.text_start:
34 new.text_start, old.text_start
36 if new.entry != old.entry:
37 output += " Entrypoint: New {:#x}, old {:#x} \n".format(new.entry, old.entry)
40 if new.data != old.data:
41 if len(new.data) == len(old.data):
42 for i, (new_b, old_b) in enumerate(zip(new.data, old.data)):
[all …]
/hal_espressif-latest/components/xtensa/
Dxtensa_intr.c78 xt_exc_handler old; in xt_set_exception_handler() local
85 old = _xt_exception_table[n]; in xt_set_exception_handler()
94 return ((old == &xt_unhandled_exception) ? 0 : old); in xt_set_exception_handler()
134 xt_handler old; in xt_set_interrupt_handler() local
145 old = entry->handler; in xt_set_interrupt_handler()
156 return ((old == &xt_unhandled_interrupt) ? 0 : old); in xt_set_interrupt_handler()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_atomic.h237 bt_mesh_atomic_val_t old; in bt_mesh_atomic_test_and_clear_bit() local
239 old = bt_mesh_atomic_and(BLE_MESH_ATOMIC_ELEM(target, bit), ~mask); in bt_mesh_atomic_test_and_clear_bit()
241 return (old & mask) != 0; in bt_mesh_atomic_test_and_clear_bit()
258 bt_mesh_atomic_val_t old; in bt_mesh_atomic_test_and_set_bit() local
260 old = bt_mesh_atomic_or(BLE_MESH_ATOMIC_ELEM(target, bit), mask); in bt_mesh_atomic_test_and_set_bit()
262 return (old & mask) != 0; in bt_mesh_atomic_test_and_set_bit()
/hal_espressif-latest/components/wpa_supplicant/port/
Deloop.c166 static bool timeout_exists(struct eloop_timeout *old) in timeout_exists() argument
171 if (old == timeout) { in timeout_exists()
/hal_espressif-latest/components/bt/esp_ble_mesh/
DKconfig.in431 node information after mesh stack updates. In the old version mesh
441 the old version only supports storing node information.
443 If users are updating their nodes from old version to new version,
1148 This option is used to decide whether discarding the old SeqAuth when
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dserial-protocol.rst210 …s: new baud rate, ``0`` if we are talking to the ROM loader or the current/old baud rate if we are…
248 …s: new baud rate, ``0`` if we are talking to the ROM loader or the current/old baud rate if we are…
/hal_espressif-latest/components/esp_psram/esp32/
DKconfig.spiram102 bool "Insert nops between vulnerable loads/stores (old strategy, obsolete)"
/hal_espressif-latest/components/bootloader/
DKconfig.projbuild218 … After the GPIO input is deactivated and the device reboots, the old application will boot.