We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6042086 commit 06b4549Copy full SHA for 06b4549
src/mpconfigport.h
@@ -128,6 +128,7 @@ extern uint32_t rng_generate_random_word(void);
128
#define MICROPY_MAKE_POINTER_CALLABLE(p) \
129
((mp_raise_NotImplementedError(MP_ERROR_TEXT("simulator limitation: asm_thumb code"))), p)
130
131
-#define AUDIO_OUTPUT_BUFFER_SIZE (256) // this can be any value, defaults to 32 bytes
+// The latency of fetching 32 byte audio frames is too much so increase the size
132
+#define AUDIO_OUTPUT_BUFFER_SIZE (128)
133
134
#endif
0 commit comments