Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return FALSE on seek past EOF #7324

Merged
merged 3 commits into from
May 31, 2020
Merged

Commits on May 24, 2020

  1. Return FALSE on seek past EOF

    Fixes esp8266#7323
    
    While I'm not a fan, the Arduino FileSeek API online shows that a seek()
    past EOF should return FALSE.
    https://www.arduino.cc/en/Reference/FileSeek
    
    SPIFFS and SDFS obey this, but LittleFS followed the POSIX standard or
    allowing seeks past EOF.
    
    Update LittleFS::seek() to follow the Arduino API and add tests for it.
    earlephilhower committed May 24, 2020
    Configuration menu
    Copy the full SHA
    1539ffc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b227662 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2020

  1. Configuration menu
    Copy the full SHA
    4e52124 View commit details
    Browse the repository at this point in the history