summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2017-12-27 17:02:57 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2017-12-27 17:02:57 -0800
commitf6cc6c9614b7db1d2b784b557192bcad6c001f37 (patch)
treeaeed6f3ddb5e345de2c539061327d48d03698e4d
parent122f3c2a48a5be50bf1ff9ab3953db482838d3ff (diff)
Add const qualifiers to readme
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c2b1c5a..6b63bd6 100644
--- a/README.md
+++ b/README.md
@@ -68,9 +68,9 @@ COMPONENT_INIT {
## API
```c
// File stream functions for reading photos
-LE_SHARED bool cam_snapshotToFile (Camera *cam, char *path,uint8_t imgSize);
-bool cam_readImageToFile (Camera *cam, char *path);
-bool cam_readImageBlock (Camera *cam, FILE *filePtr);
+LE_SHARED bool cam_snapshotToFile (Camera *cam, const char *path, uint8_t imgSize, char *imgPath);
+bool cam_readImageToFile (Camera *cam, const char *path, char *imgPath);
+bool cam_readImageBlocks (Camera *cam, FILE *filePtr);
uint8_t cam_getImageBlockSize (int jpgLen);
// Higher level commands