summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/scroll_engine.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/scroll_engine.c b/firmware/scroll_engine.c
index 5dd80f1a07..bc356a8281 100644
--- a/firmware/scroll_engine.c
+++ b/firmware/scroll_engine.c
@@ -35,10 +35,10 @@
35#endif 35#endif
36#include "scroll_engine.h" 36#include "scroll_engine.h"
37 37
38static const char scroll_tick_table[16] = { 38static const char scroll_tick_table[18] = {
39 /* Hz values: 39 /* Hz values [f(x)=100.8/(x+.048)]:
40 1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33 */ 40 1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33, 49.2, 96.2 */
41 100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3 41 100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3, 2, 1
42}; 42};
43 43
44static void scroll_thread(void); 44static void scroll_thread(void);