aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gaudio/oscilloscope/main.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-03-24 16:49:17 +1000
committerinmarket <andrewh@inmarket.com.au>2014-03-24 16:49:17 +1000
commit343ddd7158a5f102767d93598c8cba21121d6bcb (patch)
treeb95aa984fefbf0ed6a2e43a3ee316bcb3dbfcb27 /demos/modules/gaudio/oscilloscope/main.c
parent9919aeac899e0044549c75be849aaf6b1e2456ab (diff)
downloaduGFX-343ddd7158a5f102767d93598c8cba21121d6bcb.tar.gz
uGFX-343ddd7158a5f102767d93598c8cba21121d6bcb.tar.bz2
uGFX-343ddd7158a5f102767d93598c8cba21121d6bcb.zip
Final updates to GADC recording after fixing bugs in the ChibiOS AT91SAM7X ADC driver
Diffstat (limited to 'demos/modules/gaudio/oscilloscope/main.c')
-rw-r--r--demos/modules/gaudio/oscilloscope/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/modules/gaudio/oscilloscope/main.c b/demos/modules/gaudio/oscilloscope/main.c
index 9b53de8e..3636e8f9 100644
--- a/demos/modules/gaudio/oscilloscope/main.c
+++ b/demos/modules/gaudio/oscilloscope/main.c
@@ -59,11 +59,11 @@ int main(void) {
* Allocate audio buffers - eg. 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.
- * 16 x 256 seems to work on the really slow Olimex SAM7EX256 board (display speed limitation) @8kHz
+ * 8 x 256 seems to work on the really slow Olimex SAM7EX256 board (display speed limitation) @8kHz
* If your oscilloscope display stops then it is likely that your driver has stalled due to running
* out of free buffers. Increase the number of buffers..
*/
- gfxBufferAlloc(16, 256);
+ gfxBufferAlloc(8, 256);
/* Get the screen dimensions */
swidth = gdispGetWidth();