aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gadc/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/modules/gadc/main.c')
-rw-r--r--demos/modules/gadc/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/demos/modules/gadc/main.c b/demos/modules/gadc/main.c
index 928635fa..8e5ecaa4 100644
--- a/demos/modules/gadc/main.c
+++ b/demos/modules/gadc/main.c
@@ -167,6 +167,11 @@ int main(void) {
gtimerStart(&lsTimer, LowSpeedTimer, ghText, TRUE, MY_LS_DELAY);
#endif
+ // Allocate buffers for the high speed GADC device - 4 x 128 byte buffers.
+ // You may need to increase this for slower cpu's.
+ // You may be able to decrease this for low latency operating systems.
+ gfxBufferAlloc(4, 128);
+
/* Set up the scope window in the top right on the screen */
{
GWindowInit wi;