Browse code

Add version information and info screen, some more work on the accel screen

Nils Faerber authored on 05/05/2013 01:54:24
Showing 1 changed files
... ...
@@ -6,6 +6,6 @@
6 6
 
7 7
 extern const uint8_t cc256x_init_script[];
8 8
 extern const uint8_t cc256x_init_script_2[];
9
-
10 9
 extern const uint32_t cc256x_init_script_size;
10
+extern const char *cc256x_version;
11 11
 #endif
Browse code

Here we are! MetaWatch support in Oswald!

Nils Faerber authored on 27/04/2013 20:22:32
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,11 @@
1
+#ifndef _BT_CC2560_H
2
+#define _BT_CC2560_H
3
+
4
+/* the init/patch script for CC256x chipset */
5
+/* see TI license for details */
6
+
7
+extern const uint8_t cc256x_init_script[];
8
+extern const uint8_t cc256x_init_script_2[];
9
+
10
+extern const uint32_t cc256x_init_script_size;
11
+#endif