I'm new to using Libraries with the Arduino , When I try to compile my this code below, I can't get the file to accept the Flash.h Library found at Flash | Arduiniana
#include <RFM69.h>
//#include <RFM69registers.h>
#include <SPI.h>
#include <SPIFlash.h>
#include <OneWire.h>
#include <LowPower.h>
#include <EEPROM.h>
#include <Flash.h>
i get a strange result. I'm new at using multiple libraries and not sure how to verify I have the correct instantiation of the Flash.h Library, any ideas on how to verify I'm using the Library the author intended ?
C:\Users\Documents\Arduino\libraries\Flash/Flash.h:36:34: error: no matching function for call to '_FLASH_STRING::_FLASH_STRING(const char [13])'
_FLASH_STRING name(name##_flash);
^
uni_mote_2p7_v1.ino:1474:5: note: in expansion of macro 'FLASH_STRING'
C:\Users\Documents\Arduino\libraries\Flash/Flash.h:36:34: note: candidates are:
_FLASH_STRING name(name##_flash);
^
uni_mote_2p7_v1.ino:1474:5: note: in expansion of macro 'FLASH_STRING'
C:\Users\Documents\Arduino\libraries\Flash/Flash.h:70:3: note: _FLASH_STRING::_FLASH_STRING(const int*)
_FLASH_STRING(const prog_char *arr);