/hal_espressif-3.6.0/examples/cxx/experimental/esp_mqtt_cxx/components/esp_mqtt_cxx/ |
D | esp_mqtt_cxx.cpp | 226 bool is_valid(std::string::const_iterator first, std::string::const_iterator last) in is_valid() argument 228 if (first == last) { in is_valid() 231 auto number = std::find(first, last, '#'); in is_valid() 236 if (*std::prev(number) != '/' && number != first) { in is_valid() 241 auto plus = std::find(first, last, '+'); in is_valid() 243 if (*(std::prev(plus)) != '/' && plus != first) { in is_valid() 265 mismatch.first != filter.end() and mismatch.second != topic_end; in match() 267 if (*mismatch.first != '#' and * mismatch.first != '+') { in match() 270 if (*mismatch.first == '#') { in match() 273 if (*mismatch.first == '+') { in match() [all …]
|
/hal_espressif-3.6.0/tools/ci/ |
D | check_examples_cmake_make.py | 95 def diff(first, second): argument 97 first = set(first) 99 res = list(first - second) + list(second - first)
|
/hal_espressif-3.6.0/examples/cxx/experimental/esp_mqtt_cxx/components/esp_mqtt_cxx/include/ |
D | esp_mqtt.hpp | 74 [[nodiscard]] bool filter_is_valid(std::string::const_iterator first, std::string::const_iterator l… 103 [[nodiscard]] bool match(std::string::const_iterator first, 192 …std::optional<MessageID> publish(const std::string &topic, InputIt first, InputIt last, QoS qos = … in publish() argument 194 auto size = std::distance(first, last); in publish() 195 …auto res = esp_mqtt_client_publish(handler.get(), topic.c_str(), &(*first), size, static_cast<int… in publish()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/device/ |
D | bdaddr.c | 43 bool bdaddr_equals(const bt_bdaddr_t *first, const bt_bdaddr_t *second) in bdaddr_equals() argument 45 assert(first != NULL); in bdaddr_equals() 48 return memcmp(first, second, sizeof(bt_bdaddr_t)) == 0; in bdaddr_equals()
|
/hal_espressif-3.6.0/docs/en/api-reference/system/ |
D | esp_event.rst | 89 person's last name and first name, respectively. A last name identifies a family, and the first nam… 192 …ch, those which are registered first also gets executed first. The user can then control which han… 194 …ised if there are multiple tasks registering handlers. While the 'first registered, first executed' 195 …ior still holds true, the task which gets executed first will also get their handlers registered f…
|
/hal_espressif-3.6.0/tools/ldgen/ |
D | fragments.py | 409 def __init__(self, first, second=None): argument 410 self.first = first 426 …grammar.setParseAction(lambda tok: Mapping.Sort(tok.first, tok.second if tok.second != '' else Non… 431 self.first == other.first and
|
/hal_espressif-3.6.0/examples/cxx/experimental/esp_event_cxx/ |
D | README.md | 32 event base test, ID: 0; called first round 33 event base test, ID: 1; called first round
|
/hal_espressif-3.6.0/tools/ |
D | mkdfu.py | 161 self._add_cpio_entry(DFUINFO_FILE, dfuinfo, first=True) 195 self, filename, data, first=False, trailer=False argument 202 if not first:
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gattc_multi_connect/tutorial/ |
D | Gatt_Client_Multi_Connection_Example_Walkthrough.md | 116 …first remote device. The second and third devices get connected once the client searches for servi… 136 …When connecting to the first device, an ``ESP_GATTC_CONNECT_EVT`` event is generated which is forw… 141 //open failed, ignore the first device, connect the second device 196 …passed to indicate that we want all the characteristics starting from the first one. If the client… 222 * In order to pass this descriptor as a parameter we first define it as: 300 …istics, register for notifications and write to the characteristic as the first device. The sequen… 316 …s the same configuration and communication steps in identical form as the first and second devices… 319 …he connections to the remote devices are done in order, starting from the first one and making sur…
|
/hal_espressif-3.6.0/examples/system/console_usb/ |
D | README.md | 29 #### Flashing the project for the first time using UART 37 #### Flashing the project for the first time using USB 39 We can also use the ESP32-S2 built-in USB bootloader to flash the program for the first time. 58 Once the board is flashed for the first time, a USB serial port will appear in the system.
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | temp_sensor.rst | 15 The conversion relationship is the first columns of the table below. Among them, offset = 0 is the … 57 …If you want dynamic reconfiguration, you need to stop the sensor first (temp_sensor_stop), set the…
|
/hal_espressif-3.6.0/components/ |
D | README.md | 11 The first group (referred to as `G0` from now on) contains `hal`, `xtensa` and `riscv` (referred to… 18 The second group (referred to as `G1` from now on) sits at a higher level than the first group. Thi… 19 … `heap`. Like the first group, circular dependencies within the group are allowed; and being at a …
|
/hal_espressif-3.6.0/docs/en/api-reference/protocols/ |
D | esp_http_client.rst | 9 …* :cpp:func:`esp_http_client_init`: To use the HTTP client, the first thing we must do is create a… 88 // first request 134 …on with that handle, and :cpp:func:`esp_http_client_init` alway to called first to get the handle.… 154 … ``password`` in the configuration, the HTTP client takes 2 performs. The first time it connects t…
|
/hal_espressif-3.6.0/components/hal/ |
D | sdio_slave_hal.c | 190 sdio_slave_hal_send_desc_t *first = NULL, *last = NULL; in init_send_queue() local 207 first = NULL; in init_send_queue() 210 rcv_res = sdio_ringbuf_recv(buf, (uint8_t **) &first, (uint8_t **) &last, RINGBUF_GET_ALL); in init_send_queue() 212 HAL_ASSERT(first == last); //there should be only one desc remain in init_send_queue() 213 sdio_ringbuf_return(buf, (uint8_t *) first); in init_send_queue()
|
/hal_espressif-3.6.0/examples/ethernet/basic/main/ |
D | Kconfig.projbuild | 191 … Set the GPIO number used by SPI CS0, i.e. Chip Select associated with the first SPI Eth module). 208 Set the GPIO number used by the first SPI Ethernet module interrupt line. 224 Set the GPIO number used to reset PHY chip on the first SPI Ethernet module. 241 Set the first SPI Ethernet module PHY address according your board schematic.
|
/hal_espressif-3.6.0/examples/system/eventfd/ |
D | README.md | 5 1. The first task writes to the first `eventfd` periodically.
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | unit-tests-legacy.rst | 27 The first argument is a descriptive name for the test, the second argument is an identifier in squa… 76 The first argument is test case name, the second argument is test case description. 112 …rect after a wakeup from deep sleep. We need to create a deep-sleep reset first and then check the… 216 For the first time you execute this case, please input ``1`` to run the first stage (trigger deep-s…
|
D | deep-sleep-stub.rst | 30 If supplying a custom wake stub, the first thing it does should be to call ``esp_default_wake_deep_… 43 The first way is to use the ``RTC_IRAM_ATTR`` attribute to place a function into RTC memory:: 52 The first way is simpler for very short and simple code, or for source files where you want to mix … 66 The first way is to use the ``RTC_DATA_ATTR`` and ``RTC_RODATA_ATTR`` to specify any data (writeabl…
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/device/include/device/ |
D | bdaddr.h | 40 bool bdaddr_equals(const bt_bdaddr_t *first, const bt_bdaddr_t *second);
|
/hal_espressif-3.6.0/components/bootloader/ |
D | Kconfig.projbuild | 238 …This state prevents the re-run of this app. After the first boot of the new app in the user code, … 242 …Note: If during the first boot a new app the power goes out or the WDT works, then roll back will … 311 partition as this would skip the validation upon first load of the new 507 Build a bootloader which enables Secure Boot on first boot. 530 Build a bootloader which enables secure boot version 1 on first boot. 537 Build a bootloader which enables Secure Boot version 2 on first boot. 550 …On first boot, the bootloader will generate a key which is not readable externally or by software.… 554 …Enabling this option means that the bootloader cannot be changed after the first time it is booted. 673 If this option is set, flash contents will be encrypted by the bootloader on first boot. 675 … Note: After first boot, the system will be permanently encrypted. Re-flashing an encrypted [all …]
|
/hal_espressif-3.6.0/examples/ethernet/iperf/ |
D | sdkconfig.defaults | 13 # Run FreeRTOS only on the first core
|
/hal_espressif-3.6.0/tools/ldgen/samples/ |
D | template.ld | 82 and uses it in preference to the first symbol in IRAM */ 209 resolved by addr2line in preference to the first symbol in
|
/hal_espressif-3.6.0/tools/ldgen/test/data/ |
D | linker_script.ld | 82 and uses it in preference to the first symbol in IRAM */ 210 resolved by addr2line in preference to the first symbol in
|
/hal_espressif-3.6.0/examples/storage/partition_api/partition_find/ |
D | README.md | 5 …e, subtype and label/name. In the case of `esp_partition_find_first`, the first matching instance … 10 The example uses a [custom partition table](./partitions_example.csv). The first part uses `esp_par…
|
/hal_espressif-3.6.0/docs/_static/diagrams/ring-buffer/ |
D | ring_buffer_wrap_allow_split.diag | 18 #Send first part
|