jmamma / MCL

MCL firmware for the MegaCommand MIDI Controller.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

itoa is really slow.

jmamma opened this issue · comments

Suggest we migrate to another implementation where possible.

The GridPage implementation is surprisingly MUCH faster.

205   val[0] = (MidiClock.bar_counter % 100) / 10 + '0';
206   val[1] = (MidiClock.bar_counter % 10) + '0';
207   val[2] = '\0';

itoa deprecated.