Browse code

Some documentation hints

Nils Faerber authored on 05/05/2013 16:55:42
Showing 4 changed files
... ...
@@ -4,4 +4,4 @@ Open Smart Watch Application Loadable Development
4 4
 
5 5
 License: LGPL (Gnu Library Public License),
6 6
 permission granted for static linking,
7
-see individual files for licensing information
7
+see individual files for more / different licensing information
... ...
@@ -1,7 +1,8 @@
1 1
 
2 2
 l2cap_client
3
+License: GPLv3
3 4
 
4
-Is a small test application to test the Bluetooth connection to
5
+This is a small test application to test the Bluetooth connection to
5 6
 Oswald-MetaWatch. It opens a L2CAP connection to a give Bluetooth address.
6 7
 After successful connection establishment it output all data received to
7 8
 stdout and send data received from stdin (keyboard) to the watch. Input via
... ...
@@ -17,17 +17,17 @@ MEMMODEL   = -mmemory-model=huge -fdata-sections -ffunction-sections # -mdata-re
17 17
 # MEMMODEL   = -mmemory-model=medium -misr20
18 18
 #MEMMODEL   = -mmemory-model=medium
19 19
 
20
-APPCONFIG = -DDIGITAL -DMW_DEVBOARD_V2
20
+#APPCONFIG = -DDIGITAL -DMW_DEVBOARD_V2
21 21
 #APPCONFIG = -DDIGITAL -DMW_DEVBOARD_V2 -DWITH_BTSTACK
22 22
 #APPCONFIG = -DDIGITAL -DMW_DEVBOARD_V2 -DCC256x_TRANSP
23
-#APPCONFIG = -DDIGITAL -DMW_DIGITAL_V2
24
-
25
-# List all the source files here
26
-# eg if you have a source file foo.c then list it here
23
+APPCONFIG = -DDIGITAL -DMW_DIGITAL_V2
27 24
 
28 25
 BTCC256x_SCRIPT = bluetooth_init_cc2560_2.44.c
29 26
 #BTCC256x_SCRIPT = bluetooth_init_cc2564_2.8.c
30 27
 
28
+# List all the source files here
29
+# eg if you have a source file foo.c then list it here
30
+
31 31
 OSWALD_SRC = ../ui/oswald_main.c ../ui/oswald_screens.c \
32 32
 	../ui/oswald_watch_faces.c \
33 33
 	../ui/oswald_strings.c ../ui/calendar.c \
34 34
new file mode 100644
... ...
@@ -0,0 +1,4 @@
1
+
2
+To compile basically just type "make".
3
+Have a look into the Makefile for configurable options, like watch type,
4
+Bluetooth firmware version etc.