1. 28 Jul, 2018 2 commits
  2. 26 Jul, 2018 1 commit
  3. 25 Jul, 2018 7 commits
  4. 24 Jul, 2018 6 commits
  5. 17 Jul, 2018 1 commit
  6. 16 Jul, 2018 5 commits
    • me-no-dev's avatar
      05d72f96
    • pacucha42's avatar
      Release notes formatting update (#1634) · b14f82b6
      pacucha42 authored
      b14f82b6
    • per1234's avatar
      EEPROM library: Move #include of Arduino.h to header file (#1641) · c830511f
      per1234 authored
      EEPROM.h uses data types which are declared through Arduino.h but that file does not contain an #include directive for Arduino.h. This does not cause any problems when the EEPROM library is #included from a .ino file because the Arduino IDE automatically adds an #include directive for Arduino.h but this is not the case for .cpp files. If a .cpp file has an #include directive for EEPROM.h that does not follow an #include directive for Arduino.h then compilation fails:
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:91:5: error: 'float_t' does not name a type
      
           float_t readFloat(int address);
      
           ^
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:92:5: error: 'double_t' does not name a type
      
           double_t readDouble(int address);
      
           ^
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:95:5: error: 'String' does not name a type
      
           String readString(int address);
      
           ^
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:110:36: error: 'float_t' has not been declared
      
           size_t writeFloat(int address, float_t value);
      
                                          ^
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:111:37: error: 'double_t' has not been declared
      
           size_t writeDouble(int address, double_t value);
      
                                           ^
      
      E:\arduino\hardware\espressif\esp32\libraries\EEPROM/EEPROM.h:114:37: error: 'String' has not been declared
      
           size_t writeString(int address, String value);
      c830511f
    • Kryštof Černý's avatar
      Add ALKS board variant (#1643) · cbd4dc53
      Kryštof Černý authored
      * Initial support for ALKS variant
      cbd4dc53
    • me-no-dev's avatar
      44f5a4db
  7. 15 Jul, 2018 1 commit
  8. 12 Jul, 2018 1 commit
    • chuck todd's avatar
      Spurious Interrupts Temporary fix 20180711 (#1625) · 28a410dd
      chuck todd authored
      the 'eject' ERROR is and indication of an interrupt triggering without an source.  I am working to eliminate these serviceable interrupt.  This update increase stability on a HelTek Wifi Lora 32 board. with a SSD1306 OLED.  This update fixes a glaring error in the interrupt allocation code, the Interrupt mask was wrong.  I also dynamically adjust the FiFo thresholds based on Bus clockrate. The change to FiFo thresholds has reduced the number for 'eject' events.  I also change 'eject' from and ERROR to DEBUG.  An 'eject' event does not compromise i2c transmissions. It happens after a transaction has completed. 
      
      Chuck.
      28a410dd
  9. 11 Jul, 2018 1 commit
  10. 10 Jul, 2018 6 commits
  11. 07 Jul, 2018 3 commits
  12. 05 Jul, 2018 6 commits