NVProperty generic key value store using the MCU flash area.
Dependents: Turtle_RadioShuttle
Revision 11:d5dc788ec805, committed 2019-02-10
- Comitter:
- Helmut Tschemernjak
- Date:
- Sun Feb 10 10:43:09 2019 +0100
- Parent:
- 10:7999d15fd227
- Child:
- 12:5539cdc8be4b
- Commit message:
- arch.h is not available on Arduino
Changed in this revision
| NVProperty_SRAM.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/NVProperty_SRAM.cpp Wed Feb 06 15:53:49 2019 +0100 +++ b/NVProperty_SRAM.cpp Sun Feb 10 10:43:09 2019 +0100 @@ -12,7 +12,9 @@ #include <string.h> #include <stdlib.h> #include <stdint.h> +#ifndef ARDUINO #include "arch.h" +#endif #include <NVPropertyProviderInterface.h> #include <NVProperty.h> #include <NVProperty_SRAM.h>
Helmut Tschemernjak