aboutsummaryrefslogtreecommitdiffstats
path: root/users/spidey3/unicode.c
blob: 41ceef83756ea6e81d311fc95e1de244c16dbbea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "unicode.h"

const uint32_t PROGMEM unicode_map[] = {
    [BUL1]		= 0x2022, // •
    [BUL2]		= 0x25E6, // ◦
    [LARR]		= 0x2190, // ←
    [RARR]		= 0x2192, // →
    [ENDASH]	= 0x2013, // –
    [EMDASH]	= 0x2014, // —
};

void eeconfig_init_user_unicode(void)
{
  // Default to Linux style
  set_unicode_input_mode(UC_LNX);
}