You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
## Using this Project as a library
7
7
8
8
If you have an Arduino Sketch that you want to run e.g in Linux, OS/X or Windows you can include this library with cmake.
9
-
Here is an [example cmake file](https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/examples-desktop/generator/CMakeLists.txt) for a[Arduino Audio Sketch](https://github.com/pschatzmann/arduino-audio-tools/tree/main/examples/examples-desktop/generator)).
9
+
Here is an [example cmake file](https://github.com/pschatzmann/arduino-audio-tools/blob/main/examples/examples-desktop/generator/CMakeLists.txt) for an[Arduino Audio Sketch](https://github.com/pschatzmann/arduino-audio-tools/tree/main/examples/examples-desktop/generator)).
10
10
11
11
## GPIO/SPI/I2C
12
12
@@ -66,5 +66,12 @@ Adjust the cmake parameters dependent on your requirements.
66
66
67
67
## Documentation
68
68
69
-
The generated [Class documentation](https://pschatzmann.github.io/Arduino-Emulator/html/annotated.html).
- You can find further information in the [Wiki](https://github.com/pschatzmann/Arduino-Emulator/wiki)
70
71
72
+
## Usage notes
73
+
74
+
### Case-insensitive file systems (Windows, OSX, WSL)
75
+
76
+
To avoid conflicts between system `string.h` and Arduino’s string library `String.h`, just do not put `(include)/api` to include path. Put `(include)` and `(include)/api/deprecated` instead.
77
+
This usual way to resolve this conflict in all Arduino cores.
0 commit comments