1. 28 2月, 2022 1 次提交
  2. 24 2月, 2022 4 次提交
  3. 23 2月, 2022 6 次提交
  4. 21 2月, 2022 6 次提交
  5. 17 2月, 2022 1 次提交
    • R
      Fixes UART pin setting + adds CTS/RTS HW Flow Control (#6272) · 50e9772e
      Rodrigo Garcia 提交于
      * fixes setPins and begin to keep rx/tx unmodified
      
      * adds Hardware Flow Control mode and CTS/RTS pin setting
      
      * adds Hardware Flow Control mode and CTS/RTS pin setting
      
      * adds Hardware Flow Control mode and CTS/RTS pin setting
      
      * adds Hardware Flow Control mode and CTS/RTS pin setting
      
      * Code Review
      50e9772e
  6. 16 2月, 2022 9 次提交
  7. 07 2月, 2022 2 次提交
  8. 05 2月, 2022 2 次提交
  9. 04 2月, 2022 6 次提交
    • P
      FIX ledc on ESP32C3 (#6229) · 9dbc9087
      P-R-O-C-H-Y 提交于
      9dbc9087
    • P
      Added dual antenna for WiFi (based on the ESP32-WROOM-DA module) (#6226) · 9b066ea6
      Pedro Minatel 提交于
      * Added dual antenna for WiFi (based on the ESP32-WROOM-DA module)
      
      * Fixed build error
      
      * Fixed indentation and renamed function to setDualAntennaConfig
      
      * Added the RX and TX selection modes as configuration
      
      * Mode code optimization
      9b066ea6
    • L
      add feather esp32 v2 and qtpy c3 board def (#6223) · bb4d9027
      Limor "Ladyada" Fried 提交于
      * add feather esp32 v2 and qtpy c3 board def
      update some pin names
      add variant.cpp's to auto-enable i2c, tft, neopixels on boot
      
      * add auto-enable for i2c!
      bb4d9027
    • D
      1046f59f
    • S
      Fix replace() failing (#6224) · 6591f5bd
      s-hadinger 提交于
      6591f5bd
    • R
      Touch Sensor IDF Refactoring (#6194) · 0ea485e5
      Rodrigo Garcia 提交于
      Summary
      
      Touch Sensor refactoring to be based on IDF 4.4.
      Adds support to ESP32S2 and future ESP32S3.
      
      Adds some new APIs:
      
      For all chips:
      
      void touchAttachInterruptArg(uint8_t pin, void (*userFunc)(void*), void *arg, uint32_t threshold);
      This function allows the user to add and pass a void* parameter to the ISR user callback.
      
      void touchDetachInterrupt(uint8_t pin);
      This function detaches ISR call back for the touch pad pin.
      
      Only ESP32 chip
      
      void touchInterruptSetThresholdDirection(bool mustbeLower);
      This function allows the user to set if the ISR callback will be activated when the touch sensor readings are lower or higher than the threshold defined. See example TouchButton.ino.
      
      Only ESP32-S2 and ESP32-S3 chips
      
      bool touchInterruptGetLastStatus(uint8_t pin);
      This function reports if the touch pad pin is touched or untouched. It can be used with ISR to identify when it is touched and untouched (released). See example TouchButtonV2.ino.
      
      Impact
      
      None. ll original APIs and examples now run on ESP32 and ESP32-S2.
      
      Related links
      
      Fix #6095
      Fix #6034
      Fix #5799
      Fix #5745
      Fix #5527
      Fix #5493
      Fix #4321
      Fix #4044
      Fix #2722
      Fix #2625
      0ea485e5
  10. 01 2月, 2022 3 次提交
    • R
      framebuffer location for no-psram boards (#6219) · 3a96fc0e
      René Bohne 提交于
      If board has no PSRAM, we need to set the framebuffer location to DRAM:
      config.fb_location = CAMERA_FB_IN_DRAM;
      3a96fc0e
    • I
      Unnecessary operation removed from map() in WMath.cpp (#6218) · 5be3ff74
      IanSC 提交于
      * Unneccesary Operation Removed
      
      (A) extra operation not needed and incorrect:
            wrong by 0.5 but happens to be thrown out
      
           ( delta * dividend + (divisor / 2) ) / divisor
      
              delta * dividend     divisor
          = ---------------- + -----------
              divisor                    2 * divisor
      
          = delta * dividend / divisor + 1/2
      
      (B) check first before doing other computations
      
      (C) changed to rise/run, easier for future maintainer
            since it's closer to equation of a line
      
      (D) before: mult, shift, add, div, add
            now: mult, div, add
      
      (E) error message easier to trace where thrown
      
      * Update WMath.cpp
      
      forgot to change variable name
      5be3ff74
    • P
      Docs cleanup and version updated to 2.0.2 (#6213) · dafdc052
      Pedro Minatel 提交于
      * Docs cleanup and version updated to 2.0.2
      
      * Removed issue template information
      
      * Removed issue template file
      
      * Added referecnces for the issue and feature request form
      dafdc052