Skip to content

Commit 3cbb89c

Browse files
bump dist to 2.7.10
1 parent ccb359a commit 3cbb89c

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/eloquentarduino/EloquentEsp32cam"
88
},
9-
"version": "2.7.9",
9+
"version": "2.7.10",
1010
"authors": {
1111
"name": "Simone Salerno",
1212
"url": "https://github.com/eloquentarduino"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EloquentEsp32cam
2-
version=2.7.9
2+
version=2.7.10
33
author=Simone Salerno <support@eloquentarduino.com>
44
maintainer=Simone Salerno <support@eloquentarduino.com>
55
sentence=Use your Esp32-cam like an expert

src/eloquent_esp32cam/camera/camera.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,15 @@ namespace Eloquent {
129129
}
130130

131131
/**
132-
* Release frame memory
132+
* Release frame memory.
133+
* Only call if you know what you're doing:
134+
* calling this method at the wrong time may
135+
* 1) make other pieces of code of this library break
136+
* 2) introduce lags in the capture process
137+
*
138+
* Frame buffer is already release before each new capture,
139+
* so you shouldn't have the necessity to call this method
140+
* on your own.
133141
*/
134142
void free() {
135143
if (frame != NULL) {

0 commit comments

Comments
 (0)