1. 18 2月, 2021 1 次提交
  2. 03 11月, 2020 1 次提交
  3. 30 9月, 2020 1 次提交
  4. 15 10月, 2019 1 次提交
    • D
      SPI: Ensure all read-only data pointers are marked as const (#3356) · b847f41e
      David J. Fiddes 提交于
      This changes all SPI functions that take data pointers which are
      not modified so that the declaration is const. This allows them
      to be used with const data (i.e. held in flash). No functional
      changes are required.
      
      The defnitions of spiWrite() and spiTransferBytes()  in
      esp-hal-spi.h/c have been updated to be consistent.
      
      Tests:
       - Build a simple sketch using SPI.writePattern() and
         SPI.transferBytes()  which uses const data and verify that the
         attached device functions as expected.
      b847f41e
  5. 22 9月, 2019 1 次提交
  6. 03 12月, 2018 1 次提交
    • A
      Fixed Arduino SPI/Ethernet compile issue as described in issue #1623 (#2136) · b5f31701
      Arjan Filius 提交于
      * #1623, implementing suggested change
      
      Splitted suggested fix issue #1623 in a header and source part. Dit not completely dive into the code.
      Giving data twice as parameter feels wrong, but it compiles, and i can succesfully use the W5500 with SPI with this fix.
      Doesn't compile without.
      
      * #1623, implementing suggested change SPI.h/cpp
      
      Splitted suggested fix issue #1623 in a header and source part. Dit not completely dive into the code.
      Giving data twice as parameter feels wrong, but it compiles, and i can succesfully use the W5500 with SPI with this fix.
      Doesn't compile without.
      b5f31701
  7. 04 7月, 2018 2 次提交
  8. 14 5月, 2018 1 次提交
  9. 28 11月, 2017 1 次提交
    • Z
      Set HSPI ports by default when HSPI is selected (#874) · 3198f25c
      zipiju 提交于
      When user selected HSPI with SPIClass name(HSPI) ESP was, by default,
      still using VSPI ports (the ones defined in pins_arduino.h).
      With this change when user selects HSPI then HSPI default ports will be
      used.
      If user won't specify HSPI then VSPI default ports will be used.
      If user will specify SCLK, MOSI, MISO and SS with SPI.begin() then user
      defined ports will be used no matter if VSPI or HSPI is selected.
      With this change fe. SD library can use default HSPI ports. It was
      possible to
      pass HSPI SPI instance to SD lib, however even then it was using VSPI
      ports which were (probably) GPIO matrixed to HSPI.
      3198f25c
  10. 19 3月, 2017 2 次提交
  11. 14 2月, 2017 2 次提交
  12. 10 2月, 2017 1 次提交
  13. 06 10月, 2016 1 次提交