Skip to content

Commit 0272fa7

Browse files
facchinmpennam
authored andcommitted
Camera: add comment for external SDARM + higher resolution
1 parent ced4000 commit 0272fa7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

libraries/Camera/examples/CameraCaptureRawBytes/CameraCaptureRawBytes.ino

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@
2525
Other buffer instantiation options:
2626
FrameBuffer fb(0x30000000);
2727
FrameBuffer fb(320,240,2);
28+
29+
If resolution higher than 320x240 is required, please use external RAM via
30+
#include "SDRAM.h"
31+
FrameBuffer fb(SDRAM_START_ADDRESS);
32+
...
33+
// and adding in setup()
34+
SDRAM.begin();
2835
*/
2936
FrameBuffer fb;
3037

0 commit comments

Comments
 (0)