File tree Expand file tree Collapse file tree 4 files changed +3
-10
lines changed Expand file tree Collapse file tree 4 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 17
17
#ifndef ACE_TIME_ACE_TIME_H
18
18
#define ACE_TIME_ACE_TIME_H
19
19
20
- // Blacklist boards using new Arduino API due to incompatibilities. This
21
- // currently includes all megaAVR boards and SAMD21 boards using arduino::samd
22
- // >= 1.8.10. Boards using arduino:samd <= 1.8.9 or SparkFun:samd are fine.
23
- #if defined(ARDUINO_ARCH_MEGAAVR )
24
- #error MegaAVR not supported, https://github.com/bxparks/AceTime/issues/44
25
- #elif defined(ARDUINO_ARCH_SAMD ) && defined(ARDUINO_API_VERSION )
26
- #error SAMD21 with arduino:samd >= 1.8.10 not supported, https://github.com/bxparks/AceTime/issues/45
27
- #endif
28
-
29
20
#include "ace_time/common/compat.h"
30
21
#include "ace_time/common/common.h"
31
22
#include "ace_time/common/DateStrings.h"
Original file line number Diff line number Diff line change 9
9
#include < stddef.h> // size_t
10
10
#include < stdint.h> // uint8_t, etc
11
11
#include < string.h> // strlen()
12
- #include < Arduino .h> // strncpy_P()
12
+ #include < avr/pgmspace .h> // strncpy_P()
13
13
#include " LocalDate.h"
14
14
#include " LocalTime.h"
15
15
Original file line number Diff line number Diff line change 3
3
* Copyright (c) 2018 Brian T. Park
4
4
*/
5
5
6
+ #include < AceCommon.h>
6
7
#include " LocalDateTime.h"
7
8
#include " OffsetDateTime.h"
8
9
Original file line number Diff line number Diff line change 3
3
* Copyright (c) 2018 Brian T. Park
4
4
*/
5
5
6
+ #include < AceCommon.h>
6
7
#include " common/DateStrings.h"
7
8
#include " ZonedDateTime.h"
8
9
You can’t perform that action at this time.
0 commit comments