/hal_espressif-2.7.6/tools/ci/python_packages/ |
D | gitlab_api.py | 61 def download_artifacts(self, job_id, destination): argument 74 archive_file.extractall(destination) 101 def download_artifact(self, job_id, artifact_path, destination=None): argument 121 if destination: 122 file_path = os.path.join(destination, a_path) 156 def download_archive(self, ref, destination, project_id=None): argument 181 archive_file.extractall(destination) 183 return os.path.join(os.path.realpath(destination), root_name) 201 gitlab_inst.download_artifacts(args.job_id, args.destination) 203 gitlab_inst.download_artifact(args.job_id, args.artifact_path, args.destination) [all …]
|
/hal_espressif-2.7.6/components/nvs_flash/src/ |
D | nvs_encrypted_partition.cpp | 64 uint8_t *destination = reinterpret_cast<uint8_t*>(dst); in read() local 66 …tls_aes_crypt_xts(&mDctxt, MBEDTLS_AES_DECRYPT, size, data_unit, destination, destination) != 0) { in read()
|
/hal_espressif-2.7.6/components/hal/ |
D | interrupt_controller_hal.c | 35 const intptr_t destination = pc + riscv_decode_offset_from_jal_instruction(pc); in is_interrupt_number_reserved() local 37 return destination != (intptr_t)&_interrupt_handler; in is_interrupt_number_reserved()
|
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/tutorial/ |
D | BLE_Mesh_Node_OnOff_Client_Example_Walkthrough.md | 5 2. The user enters the address of the destination node and use it to forwarded packet. 10 4. The destination node reports its Onoff state with the `ESP_BLE_MESH_MODEL_OP_GEN_ONOFF_STATUS` m… 12 …OP_GEN_ONOFF_SET` message to the destination node that runs the `ble_mesh_node` project. The addre… 131 | `ctx.addr` | The address of the destination nodes | 177 … API to publish messages. Only the Models that have subscribed to this destination address receive… 186 Please connect your devices and enters the address of the destination node via the serial port. 188 Users can adjust the address of the destination node. 199 …e serial port, among which, the`remote_addr` represents the address of destination node that the m… 236 …sages to the other nodes every time the user enters the address of the destination node through th…
|
/hal_espressif-2.7.6/tools/cmake/ |
D | utilities.cmake | 48 # If 'source' has different md5sum to 'destination' (or destination 51 # If 'source' has the same md5sum as 'destination', delete 'source'. 55 function(move_if_different source destination) 57 file(GLOB dest_exists ${destination}) 60 file(MD5 ${destination} dest_md5) 67 message("Moving ${source} -> ${destination}") 68 file(RENAME ${source} ${destination}) 70 message("Not moving ${source} -> ${destination}")
|
/hal_espressif-2.7.6/docs/en/api-guides/ |
D | ulps2_instruction_set.rst | 133 … another source register or to a 16-bit signed value and stores result to the destination register. 169 …ubtracts 16-bit signed value from a source register, and stores result to the destination register. 203 …r and another source register or 16-bit signed value and stores result to the destination register. 238 …r and another source register or 16-bit signed value and stores result to the destination register. 273 …s from another source register or 16-bit signed value and store result to the destination register. 308 …s from another source register or 16-bit signed value and store result to the destination register. 341 The instruction move to destination register value from source register or 16-bit signed value. 370 - *Rdst* – Register R[0..3], address of the destination, in 32-bit words 411 - *Rdst* – Register R[0..3], address of the destination, in 32-bit words 477 - *Rdst* – Register R[0..3], address of the destination, in 32-bit words [all …]
|
D | ulp_instruction_set.rst | 122 … another source register or to a 16-bit signed value and stores result to the destination register. 158 …ubtracts 16-bit signed value from a source register, and stores result to the destination register. 192 …r and another source register or 16-bit signed value and stores result to the destination register. 227 …r and another source register or 16-bit signed value and stores result to the destination register. 263 …s from another source register or 16-bit signed value and store result to the destination register. 298 …s from another source register or 16-bit signed value and store result to the destination register. 332 The instruction move to destination register value from source register or 16-bit signed value. 360 - *Rdst* – Register R[0..3], address of the destination, in 32-bit words 394 *Rdst* – Register R[0..3], destination 396 *Rsrc* – Register R[0..3], holds address of destination, in 32-bit words [all …]
|
D | core_dump.rst | 30 1. Core dump data destination (`Components -> Core dump -> Data destination`):
|
D | mesh.rst | 100 | Wireless Hop | The portion of the path between source and destination nodes | 208 …rrectly route ESP-MESH packets (see `ESP-MESH Packet`_) to the correct destination node. The routi… 221 …t's destination MAC address is within the current node's routing table and is not the current node… 223 **2.** If the destination MAC address is not within the current node's routing table, forward the d… 486 **The header** of an ESP-MESH packet contains the MAC addresses of the source and destination nodes… 491 …When sending an ESP-MESH packet to the external IP network, the destination address field of the h… 498 …ing a list of target nodes, users must first set the ESP-MESH packet's destination address to the … 500 …:`esp_mesh_set_group_id`. Multicasting to a group involves setting the destination address of the …
|
/hal_espressif-2.7.6/tools/kconfig_new/ |
D | confgen.py | 594 def update_if_changed(source, destination): argument 598 if os.path.exists(destination): 599 with open(destination, 'r') as f: 604 with open(destination, 'w') as f:
|
/hal_espressif-2.7.6/tools/windows/tool_setup/ |
D | idf_setup.iss.inc | 62 … Log('Adding download: ' + Url + ', mirror: ' + MirrorUrl + ', destination: ' + IDFZIPFileName); 127 - Download the .zip archive with submodules included, extract to destination directory, 130 - Do a git clone of the Github repository into the destination directory. 207 … Keys explanation: /s+/e includes all subdirectories, /i assumes that destination is a directory, 211 … DoCmdlineInstall('Extracting ESP-IDF', 'Copying ESP-IDF into the destination directory', CmdLine);
|
/hal_espressif-2.7.6/examples/wifi/simple_sniffer/main/ |
D | Kconfig.projbuild | 11 prompt "Select destination to store pcap file"
|
/hal_espressif-2.7.6/examples/bluetooth/nimble/bleprph_wifi_coex/ |
D | README.md | 18 …asures the round-trip time for messages sent from the source host to a destination target that are…
|
/hal_espressif-2.7.6/examples/storage/spiffs/ |
D | README.md | 12 3. Rename the file. Before renaming, check if destination file already exists using `stat` function…
|
/hal_espressif-2.7.6/docs/en/api-reference/network/ |
D | esp_eth.rst | 29 …8 bytes in length. They are made up of five or six different fields: a destination MAC address (DA… 49 The destination address field contains a 6-byte length MAC address of the device that the packet is… 50 …nificant bit in the first byte of the MAC address is set, the address is a multi-cast destination. 52 Packets with multi-cast destination addresses are designed to arrive and be important to a selected… 53 If the destination address field is the reserved multi-cast address, i.e. FF-FF-FF-FF-FF-FF, the pa… 56 …used to discard or accept packets with multi-cast, broadcast and/or uni-cast destination addresses. 57 When transmitting packets, the host controller is responsible for writing the desired destination a…
|
D | esp_now.rst | 47 …f FrameControl field are both 0. The first address field is set to the destination address. The se… 73 …veral reasons can lead to ESP-NOW fails to send data. For example, the destination device doesn't …
|
/hal_espressif-2.7.6/tools/cmake/scripts/ |
D | data_file_embed_asm.cmake | 23 message(FATAL_ERROR "SOURCE_FILE destination must be specified")
|
/hal_espressif-2.7.6/components/espcoredump/ |
D | Kconfig | 4 prompt "Data destination"
|
/hal_espressif-2.7.6/examples/wifi/simple_sniffer/ |
D | README.md | 28 - Select where to save the pcap file in `Select destination to store pcap file` menu item. 123 1. Select `JTAG (App Trace)` as the destination of pcap files.
|
/hal_espressif-2.7.6/tools/ |
D | idf_tools.py | 294 def unpack(filename, destination): argument 295 info('Extracting {0} to {1}'.format(filename, destination)) 305 destination = str(destination) 306 archive_obj.extractall(destination)
|
/hal_espressif-2.7.6/examples/protocols/icmp_echo/ |
D | README.md | 5 …asures the round-trip time for messages sent from the source host to a destination target that are…
|
/hal_espressif-2.7.6/components/app_trace/ |
D | Kconfig | 7 Select destination for application trace: trace memory or none (to disable).
|
/hal_espressif-2.7.6/components/mdns/ |
D | mdns.c | 1176 static void _mdns_dealloc_answer(mdns_out_answer_t ** destination, uint16_t type, mdns_srv_item_t *… in _mdns_dealloc_answer() argument 1178 mdns_out_answer_t * d = *destination; in _mdns_dealloc_answer() 1187 *destination = d->next; in _mdns_dealloc_answer() 1205 static bool _mdns_alloc_answer(mdns_out_answer_t ** destination, uint16_t type, mdns_service_t * se… in _mdns_alloc_answer() argument 1207 mdns_out_answer_t * d = *destination; in _mdns_alloc_answer() 1226 queueToEnd(mdns_out_answer_t, *destination, a); in _mdns_alloc_answer() 1961 static void _mdns_dealloc_scheduled_service_answers(mdns_out_answer_t ** destination, mdns_service_… in _mdns_dealloc_scheduled_service_answers() argument 1963 mdns_out_answer_t * d = *destination; in _mdns_dealloc_scheduled_service_answers() 1968 *destination = d->next; in _mdns_dealloc_scheduled_service_answers() 1970 d = *destination; in _mdns_dealloc_scheduled_service_answers()
|
/hal_espressif-2.7.6/docs/en/api-guides/esp-ble-mesh/ |
D | ble-mesh-faq.rst | 57 1.6 Can the address of Provisioner serve as destination address of the node-reporting-status messag… 60 …zation and can't be changed afterwards. In theory, it can serve as the destination address of the … 453 …ient can explicitly request to receive only mesh messages with certain destination addresses from … 495 …larm detects high smoke concentration, it will publish a message whose destination address is the … 497 …e send messages to the spray node with the spray node's unicast address as the destination address.
|
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/fast_prov_server/tutorial/ |
D | BLE_Mesh_Fast_Prov_Server_Example_Walkthrough.md | 372 | `ctx.addr` | The address of the destination nodes | 403 … API to publish messages. Only the Models that have subscribed to this destination address receive…
|