AceTime
0.1
Date and time classes for Arduino that supports the TZ DAtabase, and a system clock synchronized from an NTP server or an RTC chip.
Main Page
Classes
Files
File List
src
ace_time
common
flash.h
1
#ifndef ACE_TIME_COMMON_FLASH_H
2
#define ACE_TIME_COMMON_FLASH_H
3
4
#if defined(__AVR__) || defined(__arm__)
5
#include <avr/pgmspace.h>
6
#elif defined(ESP8266) || defined(ESP32)
7
#include <pgmspace.h>
8
#elif defined(__linux__) or defined(__APPLE__)
9
#include <pgmspace.h>
10
#else
11
#error Unsupported platform
12
#endif
13
14
#endif
Generated by
1.8.11