Subversion Repositories chibiosIgnition

Rev

Rev 9 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9 Rev 16
Line 43... Line 43...
43
}
43
}
44
 
44
 
45
 
45
 
46
 
46
 
47
 
47
 
48
void font_puts(uint8_t * s)
48
void font_puts(char * s)
49
{
49
{
50
    print_scaled_string(s,cursor_x,cursor_y,strlen(s),384);
50
    print_scaled_string(s,cursor_x,cursor_y,strlen(s),384);
51
 
-
 
52
 
-
 
53
 
-
 
54
}
51
}
55
 
52
 
56
 
53
 
57
 
54
 
58
 
55