1
0
mirror of https://github.com/sjlongland/atinysynth.git synced 2025-10-23 07:00:24 +10:00
atinysynth/ports/attiny861
Stuart Longland 98df61229d
attiny861 main: Use switch instead of if.
Years ago, and on MSP430 not AVR, I found that gcc produced tighter code
using `if` instead of `switch`.  Thus, I found myself always using `if`
and never `switch` if I needed branching, since smaller code is faster
code, and we needed all the speed we could get.

Turns out, AVR does not have this problem, and we get better performance
using `switch`.
2017-07-15 15:59:49 +10:00
..
main.c attiny861 main: Use switch instead of if. 2017-07-15 15:59:49 +10:00
Makefile Add ATTiny861 port. 2017-05-20 20:48:19 +10:00
poly_cfg.h attiny861 poly_cfg: Drop sample rate to 8kHz 2017-07-15 15:55:06 +10:00