We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ced4000 commit 0272fa7Copy full SHA for 0272fa7
libraries/Camera/examples/CameraCaptureRawBytes/CameraCaptureRawBytes.ino
@@ -25,6 +25,13 @@
25
Other buffer instantiation options:
26
FrameBuffer fb(0x30000000);
27
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();
35
*/
36
FrameBuffer fb;
37
0 commit comments