Browse code

Rework font code, add new fonts, also proportional, rework watch usage - "SET" button now enters settings mode

Nils Faerber authored on 04/05/2013 19:23:25
Showing 1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 #ifndef _OSWALD_STRINGS_H
2 2
 #define _OSWALD_STRINGS_H
3 3
 
4
-u16t oswald_strlen(char *string);
5
-char* itoa(s16t value, char* result, int base);
4
+uint16_t oswald_strlen(char *string);
5
+char* itoa(int16_t value, char* result, int base);
6 6
 
7 7
 #endif
8 8
 
Browse code

Add fixes for it to work properly on microcontroller

Nils Faerber authored on 19/03/2013 19:22:58
Showing 1 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 #ifndef _OSWALD_STRINGS_H
2 2
 #define _OSWALD_STRINGS_H
3 3
 
4
-u16t oswald_strlen(u8t *string);
4
+u16t oswald_strlen(char *string);
5 5
 char* itoa(s16t value, char* result, int base);
6 6
 
7 7
 #endif
Browse code

Countless fixes and enhancements

Nils Faerber authored on 12/08/2012 21:14:19
Showing 1 changed files
... ...
@@ -2,6 +2,7 @@
2 2
 #define _OSWALD_STRINGS_H
3 3
 
4 4
 u16t oswald_strlen(u8t *string);
5
+char* itoa(s16t value, char* result, int base);
5 6
 
6 7
 #endif
7 8
 
Browse code

Add support for more screens

Nils Faerber authored on 06/08/2012 14:12:20
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,7 @@
1
+#ifndef _OSWALD_STRINGS_H
2
+#define _OSWALD_STRINGS_H
3
+
4
+u16t oswald_strlen(u8t *string);
5
+
6
+#endif
7
+