We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7afadb3 commit 2b73ea7Copy full SHA for 2b73ea7
bootloaders/boot.c
@@ -36,6 +36,7 @@
36
*/
37
#define F_CPU_RESET (16E6/6)
38
39
+#include "api/deprecated-avr-comp/avr/pgmspace.h"
40
#include <avr/io.h>
41
#include <assert.h>
42
#include <stdbool.h>
cores/arduino/Arduino.h
@@ -20,15 +20,19 @@
20
#ifndef Arduino_h
21
#define Arduino_h
22
23
-#include "api/ArduinoAPI.h"
+#ifdef __PGMSPACE_H_
24
+#undef __PGMSPACE_H_
25
+#endif
26
-#include <avr/pgmspace.h>
27
28
29
#include <avr/interrupt.h>
-
30
+
31
+#include "api/ArduinoAPI.h"
32
+/*
33
#undef F
34
#define F(str) (str)
35
+*/
#ifdef __cplusplus
extern "C"{
#endif
0 commit comments