Skip to content

Commit

Permalink
Fix ESP32 SPIFFS open file read issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Mar 5, 2023
1 parent f570b6e commit 3827199
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP-Google-Sheet-Client",
"version": "1.3.4",
"version": "1.3.5",
"keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino",
"description": "Arduino Google Sheet REST client library for ESP8266, ESP32 and Raspberry Pi Pico (RP2040). This library allows devices to communicate with Google Sheet API to read, edit and delete the spreadsheets",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP-Google-Sheet-Client

version=1.3.4
version=1.3.5

author=Mobizt

Expand Down
2 changes: 1 addition & 1 deletion src/ESP_Google_Sheet_Client.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Google Sheet Client, GS_Google_Sheet_Client.cpp v1.3.4
* Google Sheet Client, GS_Google_Sheet_Client.cpp v1.3.5
*
* This library supports Espressif ESP8266 and ESP32 MCUs
*
Expand Down
4 changes: 2 additions & 2 deletions src/ESP_Google_Sheet_Client.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.3.4"
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.3.5"
#endif

/**
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.3.4
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.3.5
*
* This library supports Espressif ESP8266 and ESP32 MCUs
*
Expand Down
2 changes: 1 addition & 1 deletion src/mbfs/MB_FS.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include "SPI.h"

#if defined(ESP32) && __has_include(<sys/stat.h>)
#if MBFS_FLASH_FS == LittleFS
#ifdef _LITTLEFS_H_
#define MB_FS_USE_POSIX_STAT
#include <sys/stat.h>
namespace mb_fs_ns
Expand Down

0 comments on commit 3827199

Please sign in to comment.