1. 17 4月, 2021 3 次提交
  2. 16 4月, 2021 3 次提交
  3. 15 4月, 2021 10 次提交
    • M
      [2.0.0] FS::name() returns the item name as in Arduino SD (#4892) · f6c9faf4
      Me No Dev 提交于
      * FS::name() returns the item name as in Arduino SD
      
      Added method FS::path() that returns the full path
      
      * Adjust examples
      f6c9faf4
    • M
      [2.0.0] Add BLE characteristic callbacks overloads (#4832) · 89e7893b
      mixa3607 提交于
      Add BLE characteristic callbacks overloads with esp_ble_gatts_cb_param_t* param.
      Example:
      
      class BleCharactCallback : public BLECharacteristicCallbacks
      {
          void onRead(BLECharacteristic *pCharacteristic, esp_ble_gatts_cb_param_t *param)
          {
              auto addr = param->read.bda;
              ESP_LOGV(TAG, "Device " ESP_BD_ADDR_STR " request data", ESP_BD_ADDR_HEX(addr));
          }
          void onWrite(BLECharacteristic *pCharacteristic, esp_ble_gatts_cb_param_t *param)
          {
              auto addr = param->write.bda;
              ESP_LOGV(TAG, "Device " ESP_BD_ADDR_STR " transmit data", ESP_BD_ADDR_HEX(addr));
          }
      };
      89e7893b
    • E
      Add setMTU function to BLEClient.cpp/.h (#4999) · 7a4e7066
      Eric Albers 提交于
      The current implementation has a getMTU function which returns the mtu sent in a message.
      
      This function allows you to set the MTU value on the connected device, it first sets the MTU locally by calling esp_ble_gatt_set_local_mtu. It then calls esp_ble_gattc_send_mtu_req to have the connected device also change its MTU size.
      7a4e7066
    • L
      f3dca15a
    • L
      esp32s2 temp sensor (#5044) · 9f1330c7
      lbernstone 提交于
      9f1330c7
    • U
      ec7aeb49
    • L
      LITTLEFS update - partition label and multiple partitions, idea copied from SPIFFS (#5023) · 9a518cd3
      lorol 提交于
      Note, maxOpenFiles parameter is unused but kept for compatibility.
      9a518cd3
    • L
      Serial::end hang (#5047) · 81b7c472
      lbernstone 提交于
      workaround for #5043. There is a timing issue with HardwareSerial::end. I'm not sure what is hung, but it should be possible to see this in jtag, as it does cause a reboot if you let it. The delay needs to be before you detach the device!?
      81b7c472
    • R
      Add KSZ8081 support. (#5061) · e6ba8c7a
      rtrbt 提交于
      This adds support for the KSZ8081 ethernet phy.
      Only the IDF 4+ specific code is modified, as the phy support was only
      added recently:
      espressif/esp-idf@aecfbf96
      e6ba8c7a
    • H
      Add Adafruit esp32s2 boards with custom bootloader, partition and upload.extra_flags (#5056) · 72eb3f32
      Ha Thach 提交于
      done on behalf of @Ladyada, this PR does:
      
      Add Adafruit FunHouse and upcoming Adafruit Feather Esp32s2
      Update Adafruit magtag and metro esp32s2 to have tinyuf2 as factory app
      Also modify platform.txt as discussed in adafruit#2 + adafruit#3 + adafruit#4 to add support for
      Board/variant partition.csv, bootloader.bin ( priority is user sketch > variant > build.parition/boot )
      upload.extra_flags to optionally flash tinyuf2 as factory application
      Remove duplicated parameter in running python script in linux and windows
      Please review and let me know if you want any changes.
      
      Notes: tinyuf2 is a uf2 bootloader for multiple platforms. For esp32s2, it is an factory app to perform uf2 firmware update.
      72eb3f32
  4. 14 4月, 2021 2 次提交
  5. 08 4月, 2021 1 次提交
  6. 06 4月, 2021 1 次提交
  7. 05 4月, 2021 3 次提交
  8. 26 3月, 2021 2 次提交
  9. 23 3月, 2021 1 次提交
  10. 20 3月, 2021 1 次提交
  11. 19 3月, 2021 1 次提交
  12. 18 3月, 2021 4 次提交
  13. 17 3月, 2021 1 次提交
  14. 16 3月, 2021 4 次提交
  15. 15 3月, 2021 3 次提交