stevemarple / IniFile

Arduino library to parse ini files.
GNU Lesser General Public License v2.1
87 stars 45 forks source link

Real Time Clock Conflict #9

Closed jeremy-hise closed 8 years ago

jeremy-hise commented 8 years ago

First of all, thank you for writing such a useful lib. It's really coming in handy for my remote field station. However, I am having one issue. I've chased down a conflict, it seems, with my RTC from spark fun. If I initialize the clock (RTC.configure(3,4,5,6), for example), the ini.open() returns false. It doesn't matter where I configure the RTC (before or after). Do you have any tips as to where I may look in resolving this?

Thanks again for your work.

Jeremy

jeremy-hise commented 8 years ago

I would like to add this seems to be a memory issue. Low available memory causes the library to flake out. If any others are getting a low memory warning from the Arduino IDE and this lib isn't working as expected, be sure to get a handle on your global variables. This has resolved my issue.

Thanks again for the lib Steve.

Jeremy