1
0
mirror of https://github.com/sjlongland/atinysynth.git synced 2025-09-13 18:13:16 +10:00

attiny861: Reduce voices to 8.

16 voices is a bit ambitious in 512 bytes of RAM when each voice
occupies 30 bytes.
This commit is contained in:
Stuart Longland 2017-07-26 07:44:25 +10:00
parent 26af316c2c
commit 64731b8a0d
Signed by: stuartl
GPG Key ID: F954BBBB7948D546

View File

@ -39,7 +39,7 @@
#define DEBOUNCE_DELAY (10)
/*! Number of voices */
#define VOICES (16)
#define VOICES (8)
/*! Voice states */
struct voice_ch_t poly_voice[VOICES];