Check-in [1bb3d2f507]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Partially working version
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1bb3d2f5071a97b886f68b3733c7a5f2f33266b1
User & Date: jim 2015-12-17 12:28:57.256
Context
2015-12-18
10:44
Documentation check-in: 56a4e28886 user: jim tags: trunk
2015-12-17
12:28
Partially working version check-in: 1bb3d2f507 user: jim tags: trunk
2015-12-16
13:03
Initial commit of Swift version check-in: 70f348bb6e user: jim tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Added SW/ArdtoARM.pdf.

cannot compute difference between binary files

Added SW/ReadMe.txt.










































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
What you have here;

This is a  Shock Recorder. To use it is see
section 2.6 of gCorder.pdf document.

This works on 10.10.5 and 10.10.6 

The SW needed is enclosed here:
	gCorder.app				- Control Program
	gnuplot-4.2.5-i386.dmg	- GNU plot program
	XQuartz-2.7.8.dmg		- X11 for OS X

Install XQuartz (if you don't have it already)
Open the gnuplot DMG and move it to Applications.

Then you can put the gCorder.app anywhere you wish.

The rest of section 2.6 shows you how to run it.

You can go here: http://chiselapp.com/user/jschimpf/repository/MM8451/index
And get everything (sources, board design, board software....)
Added SW/XQuartz-2.7.8.dmg.

cannot compute difference between binary files

Added SW/gCorder.pdf.

cannot compute difference between binary files

Added SW/gReceiver.app/Contents/Info.plist.








































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>BuildMachineOSBuild</key>
	<string>14F1509</string>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>gReceiver</string>
	<key>CFBundleIdentifier</key>
	<string>PP.gReceiver</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>gReceiver</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleSupportedPlatforms</key>
	<array>
		<string>MacOSX</string>
	</array>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>DTCompiler</key>
	<string>com.apple.compilers.llvm.clang.1_0</string>
	<key>DTPlatformBuild</key>
	<string>7C68</string>
	<key>DTPlatformVersion</key>
	<string>GM</string>
	<key>DTSDKBuild</key>
	<string>15C43</string>
	<key>DTSDKName</key>
	<string>macosx10.11</string>
	<key>DTXcode</key>
	<string>0720</string>
	<key>DTXcodeBuild</key>
	<string>7C68</string>
	<key>LSMinimumSystemVersion</key>
	<string>10.10</string>
	<key>NSHumanReadableCopyright</key>
	<string>Copyright © 2014 Pandora Products. All rights reserved.</string>
	<key>NSMainNibFile</key>
	<string>MainMenu</string>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>
</dict>
</plist>
Added SW/gReceiver.app/Contents/MacOS/gReceiver.

cannot compute difference between binary files

Added SW/gReceiver.app/Contents/PkgInfo.


>
1
APPL????
Added SW/gReceiver.app/Contents/Resources/Base.lproj/MainMenu.nib.

cannot compute difference between binary files

Added SW/gReceiver.app/Contents/Resources/csvprep.awk.






































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Convert to CSV

BEGIN {
		range = 2	# Set defaults
		factor = 4096

		# Output header
		print("Time,Xg,Yg,Zg");
	}
	
/^Range/ {
			range = $2 + 0
			if( range == 2 )
			{
				factor = 4096 # Counts/g
			}
			else
			{
				if( range == 4 )
				{
					factor = 2048 # Counts/g
				}
				else
				{
					if( range = 8 )
						factor = 1024 # Counts/g
				}
			}
		}

/^-- END RUN --/ {
					# Finished with the file

					exit(0)
				}
		
{
	# Get the TIME X Y & Z
	n = split($0,data,",")
	# Convert time to seconds
	data[1] = data[1]/1000
	# Convert the DATA to G values
	# 1 g = <see range>
	data[2] = data[2]/factor
	data[3] = data[3]/factor
	data[4] = data[4]/factor
	
	# Put out T,x,y,x as CSV
	
	printf("%f,%f,%f,%f\n",data[1],data[2],data[3],data[4])
}
Added SW/gReceiver.app/Contents/Resources/dataplot.sh.










>
>
>
>
>
1
2
3
4
5
#!/bin/sh
# Plot data
# Syntax plotdata.sh <data file>
awk -f dataprep.awk $1 > plotdata.txt
gnuplot gplot.txt
Added SW/gReceiver.app/Contents/Resources/dataprep.awk.
































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Convert to CSV

BEGIN {
		range = 2	# Set defaults
		factor = 4096
	}
	
/^Range/ {
			range = $2 + 0
			if( range == 2 )
			{
				factor = 4096 # Counts/g
			}
			else
			{
				if( range == 4 )
				{
					factor = 2048 # Counts/g
				}
				else
				{
					if( range = 8 )
						factor = 1024 # Counts/g
				}
			}
		}

/^-- END RUN --/ {
					# Finished with the file

					exit(0)
				}
		
{
	# Get the TIME X Y & Z
	n = split($0,data,",")
	# Convert time to seconds
	data[1] = data[1]/1000
	# Convert the DATA to G values
	# 1 g = <see range>
	data[2] = data[2]/factor
	data[3] = data[3]/factor
	data[4] = data[4]/factor
	
	# Put out T,x,y,x
	
	printf("%f  %f  %f  %f\n",data[1],data[2],data[3],data[4])
}
Added SW/gReceiver.app/Contents/Resources/gplot.txt.




















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Set for X11 terminal and persistant windows
set term x11 persist
#
# Plot the G Recorder data
# Plot Time vs X,Y and Z g data
# Data is:	Time (sec) Xg(g's)....
#
set title 'G Recorder'  # This is the label for the entire graph
set xlabel 'Time (s)'   # This is the X Axis label
set ylabel 'Acceleration g'        # This is the Y Axis lable
set grid			    # This puts a grid on the graph
#
# These next lines do the heavy lifting and plot the data
# Note: The \' at the end of the lines, this is actually 1 very long
#       line the \' escape the end of line characters.  Don't type
#       anything after them but your RETURN
# plot  - Says plot the data from "data.txt" the file we created
#         using says use these columns of data for this line 1:2 says
#         use column 1 as X and column 2 as Y
#         with line says connect the points with a line
#         You can also say with point or with dot for different styles
#         title '<name>' gives a title to this line and puts that 
#               name and color into a legend on the graph
plot	"/tmp/plotdata.txt" 	using 1:2 title 'X g' with line,\
		"/tmp/plotdata.txt"		using 1:3 title 'Y g' with line,\
		"/tmp/plotdata.txt" 	using 1:4 title 'Z g' with line
Added SW/gReceiver.app/Contents/_CodeSignature/CodeResources.


























































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>files</key>
	<dict>
		<key>Resources/Base.lproj/MainMenu.nib</key>
		<dict>
			<key>hash</key>
			<data>
			cxs8MMHIsKZ73HVxUe1+PlczPt0=
			</data>
			<key>optional</key>
			<true/>
		</dict>
		<key>Resources/csvprep.awk</key>
		<data>
		lgkTR9UUYiz+u50Uw/7tlnPW14o=
		</data>
		<key>Resources/dataplot.sh</key>
		<data>
		9PJdGwzvv72pPzvuLYiQZS9yMf0=
		</data>
		<key>Resources/dataprep.awk</key>
		<data>
		4Ax0BiglQfPACpcxI40VVWQBhV8=
		</data>
		<key>Resources/gplot.txt</key>
		<data>
		e4jHpsU8nN8e8gZrw2ASisfYSto=
		</data>
	</dict>
	<key>files2</key>
	<dict>
		<key>Resources/Base.lproj/MainMenu.nib</key>
		<dict>
			<key>hash</key>
			<data>
			cxs8MMHIsKZ73HVxUe1+PlczPt0=
			</data>
			<key>optional</key>
			<true/>
		</dict>
		<key>Resources/csvprep.awk</key>
		<data>
		lgkTR9UUYiz+u50Uw/7tlnPW14o=
		</data>
		<key>Resources/dataplot.sh</key>
		<data>
		9PJdGwzvv72pPzvuLYiQZS9yMf0=
		</data>
		<key>Resources/dataprep.awk</key>
		<data>
		4Ax0BiglQfPACpcxI40VVWQBhV8=
		</data>
		<key>Resources/gplot.txt</key>
		<data>
		e4jHpsU8nN8e8gZrw2ASisfYSto=
		</data>
	</dict>
	<key>rules</key>
	<dict>
		<key>^Resources/</key>
		<true/>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^version.plist$</key>
		<true/>
	</dict>
	<key>rules2</key>
	<dict>
		<key>.*\.dSYM($|/)</key>
		<dict>
			<key>weight</key>
			<real>11</real>
		</dict>
		<key>^(.*/)?\.DS_Store$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>2000</real>
		</dict>
		<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^.*</key>
		<true/>
		<key>^Info\.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^PkgInfo$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^[^/]+$</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^embedded\.provisionprofile$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^version\.plist$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
	</dict>
</dict>
</plist>
Added SW/gnuplot-4.2.5-i386.dmg.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/2I16NBJBK665M/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/2I16NBJBK665M/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/2I16NBJBK665M/modules.idx.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/3JH35AIMY6T35/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/3JH35AIMY6T35/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/3JH35AIMY6T35/modules.idx.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/Session.modulevalidation.


>
1
Module build session file for module cache at /Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache
Added gCorder-Sim/gCorder_Sim/DerivedData/ModuleCache/modules.timestamp.
Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb-shm.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb-wal.
Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-cmp.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-dir.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-file.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-moduleurl.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-res.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Index/Debug/macosx10.11-x86_64/gCorder_Sim.xcindex/db.xcindexdb.strings-sym.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Build/09480E0E-6361-4330-94C8-B1BC7B1CE37C.xcactivitylog.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Build/8ECA79BD-C969-48F2-A383-944754018BA0.xcactivitylog.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Build/Cache.db.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Build/D1A94E31-FF4E-4F1E-AE57-F051F7EF9483.xcactivitylog.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Issues/0D5CBB9B-66BA-4A84-957C-603DA1922E25.xcactivitylog.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/Logs/Issues/Cache.db.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/TextIndex/text-filter.idx.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/info.plist.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>WorkspacePath</key>
	<string>/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/gCorder_Sim.xcodeproj</string>
</dict>
</plist>
Added gCorder-Sim/gCorder_Sim/DerivedData/gCorder_Sim/scm.plist.




















>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>SuppressMissingCheckoutsAlert</key>
	<true/>
	<key>Version</key>
	<integer>5</integer>
</dict>
</plist>
Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/gCorder_Sim.LinkFileList.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/tgkbhit.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/board.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/freeRTOS.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/Serial.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/I2c.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/Menu-9A8560AF5A4AC275.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/main.o
/Users/jschimpf/Public/MMA8451/gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/Objects-normal/x86_64/Control-29B866333DF7C390.o
Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/dgph.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/dgph~.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim-all-non-framework-target-headers.hmap.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim-all-target-headers.hmap.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim-generated-files.hmap.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim-own-target-headers.hmap.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim-project-headers.hmap.

cannot compute difference between binary files

Added gCorder-Sim/gCorder_Sim/build/gCorder_Sim.build/Debug/gCorder_Sim.build/gCorder_Sim.hmap.

cannot compute difference between binary files

Added gCorder/Debug/gCorder-Real.map.


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
Archive member included because of file (symbol)

/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
                              ./src/main.o (OscRateIn)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
                              ./src/sysinit.o (Board_SystemInit)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
                              ./src/main.o (SystemCoreClockUpdate)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                              /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o) (Chip_Clock_SetSystemPLLSource)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
                              ./src/main.o (Chip_GPIO_Init)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                              ./src/Support/Support/i2c.o (Chip_I2C_EventHandler)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                              ./src/Support/Support/Serial.o (RingBuffer_Init)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
                              /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o) (Chip_SYSCTL_PowerDown)
/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                              ./src/Support/Support/Serial.o (Chip_UART_Init)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
                              ./src/Support/FreeRtos/queue.o (memcpy)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
                              ./src/Support/FreeRtos/tasks.o (memset)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
                              ./src/cr_startup_lpc11xx.o (__main)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
                              ./src/Support/Support/parser.o (toupper)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
                              ./src/Support/FreeRtos/tasks.o (sprintf)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
                              ./src/Support/FreeRtos/tasks.o (memcmp)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (__vfprintf)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
                              ./src/Support/Support/Menu.o (strtol)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (__Ciob)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
                              ./src/Support/FreeRtos/tasks.o (strcat)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
                              ./src/Support/Support/Serial.o (strlen)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
                              ./src/Support/FreeRtos/tasks.o (strncpy)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o) (ungetc)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o) (__filbuf)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o) (_deferredlazyseek)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o) (_fflush)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (_frexpl)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o) (__huge_vall)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (_ldexpl)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o) (_Cwritebuf)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (malloc)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o) (errno)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o) (fseek)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o) (ftell)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o) (__heaps)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o) (_sbrk)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o) (__check_heap_overflow)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
                              ./src/Support/Support/Serial.o (__aeabi_idiv)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o) (__aeabi_idiv0)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o) (__aeabi_dmul)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o) (__aeabi_lmul)
/Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
                              /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o) (__aeabi_memcpy)

Allocating common symbols
Common symbol       size              file

SystemCoreClock     0x4               /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
xQueueRegistry      0x40              ./src/Support/FreeRtos/queue.o
flashControl        0x4               ./src/main.o
FlasherTask         0x4               ./src/main.o
aquireControl       0x4               ./src/main.o
ControlTask         0x4               ./src/main.o
__heaps             0x4               /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
__end_of_heap       0x4               /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
__Ciob              0x140             /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)

Discarded input sections

 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Menu.o
 .text          0x0000000000000000        0x0 ./src/Support/Support/Menu.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/Menu.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/Menu.o
 .text.createMenu
                0x0000000000000000       0x38 ./src/Support/Support/Menu.o
 .text.runMenu  0x0000000000000000       0xf4 ./src/Support/Support/Menu.o
 .rodata.str1.4
                0x0000000000000000       0x40 ./src/Support/Support/Menu.o
 .debug_info    0x0000000000000000      0x411 ./src/Support/Support/Menu.o
 .debug_abbrev  0x0000000000000000      0x165 ./src/Support/Support/Menu.o
 .debug_loc     0x0000000000000000      0x203 ./src/Support/Support/Menu.o
 .debug_aranges
                0x0000000000000000       0x28 ./src/Support/Support/Menu.o
 .debug_ranges  0x0000000000000000       0x18 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000       0x70 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000       0xa0 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/Support/Menu.o
 .debug_macro   0x0000000000000000       0x28 ./src/Support/Support/Menu.o
 .debug_line    0x0000000000000000      0x1a5 ./src/Support/Support/Menu.o
 .debug_str     0x0000000000000000     0x2c61 ./src/Support/Support/Menu.o
 .comment       0x0000000000000000       0x71 ./src/Support/Support/Menu.o
 .ARM.attributes
                0x0000000000000000       0x31 ./src/Support/Support/Menu.o
 .debug_frame   0x0000000000000000       0x50 ./src/Support/Support/Menu.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/Serial.o
 .text          0x0000000000000000        0x0 ./src/Support/Support/Serial.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/Serial.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/Serial.o
 .text.serialClose
                0x0000000000000000       0x1c ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000000       0x28 ./src/Support/Support/Serial.o
 .text          0x0000000000000000       0x10 ./src/Support/Support/fastTimer.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/fastTimer.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/fastTimer.o
 .ARM.attributes
                0x0000000000000000       0x21 ./src/Support/Support/fastTimer.o
 .debug_line    0x0000000000000000       0x59 ./src/Support/Support/fastTimer.o
 .debug_info    0x0000000000000000       0x78 ./src/Support/Support/fastTimer.o
 .debug_abbrev  0x0000000000000000       0x14 ./src/Support/Support/fastTimer.o
 .debug_aranges
                0x0000000000000000       0x20 ./src/Support/Support/fastTimer.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/i2c.o
 .text          0x0000000000000000        0x0 ./src/Support/Support/i2c.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/i2c.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/i2c.o
 .text.i2cClose
                0x0000000000000000        0xc ./src/Support/Support/i2c.o
 .text.i2cRead  0x0000000000000000       0x10 ./src/Support/Support/i2c.o
 .text.i2cWrite
                0x0000000000000000       0x10 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/Support/i2c.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/mma8451.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/mma8451.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/mma8451.o
 .text          0x0000000000000000        0x0 ./src/Support/Support/mma8451.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/mma8451.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/mma8451.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/Support/mma8451.o
 .debug_macro   0x0000000000000000       0x34 ./src/Support/Support/mma8451.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/Support/parser.o
 .text          0x0000000000000000        0x0 ./src/Support/Support/parser.o
 .data          0x0000000000000000        0x0 ./src/Support/Support/parser.o
 .bss           0x0000000000000000        0x0 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000000000       0xa0 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/Support/parser.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .text.FreeRTOSDelay
                0x0000000000000000       0x18 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .text.vApplicationTickHook
                0x0000000000000000        0x4 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/croutine.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/croutine.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/croutine.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/croutine.o
 .text.prvInitialiseCoRoutineLists
                0x0000000000000000       0x54 ./src/Support/FreeRtos/croutine.o
 .text.prvCheckPendingReadyList
                0x0000000000000000       0x5c ./src/Support/FreeRtos/croutine.o
 .text.prvCheckDelayedList
                0x0000000000000000       0xd4 ./src/Support/FreeRtos/croutine.o
 .text.xCoRoutineCreate
                0x0000000000000000       0x80 ./src/Support/FreeRtos/croutine.o
 .text.vCoRoutineAddToDelayedList
                0x0000000000000000       0x58 ./src/Support/FreeRtos/croutine.o
 .text.vCoRoutineSchedule
                0x0000000000000000       0x60 ./src/Support/FreeRtos/croutine.o
 .text.xCoRoutineRemoveFromEventList
                0x0000000000000000       0x30 ./src/Support/FreeRtos/croutine.o
 .bss.xDelayedCoRoutineList1
                0x0000000000000000       0x14 ./src/Support/FreeRtos/croutine.o
 .bss.xPassedTicks
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.xPendingReadyCoRoutineList
                0x0000000000000000       0x14 ./src/Support/FreeRtos/croutine.o
 .bss.pxCurrentCoRoutine
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.xDelayedCoRoutineList2
                0x0000000000000000       0x14 ./src/Support/FreeRtos/croutine.o
 .bss.xCoRoutineTickCount
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.xLastTickCount
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.pxDelayedCoRoutineList
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.pxReadyCoRoutineLists
                0x0000000000000000       0x28 ./src/Support/FreeRtos/croutine.o
 .bss.uxTopCoRoutineReadyPriority
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .bss.pxOverflowDelayedCoRoutineList
                0x0000000000000000        0x4 ./src/Support/FreeRtos/croutine.o
 .debug_info    0x0000000000000000      0x6f8 ./src/Support/FreeRtos/croutine.o
 .debug_abbrev  0x0000000000000000      0x23d ./src/Support/FreeRtos/croutine.o
 .debug_loc     0x0000000000000000      0x240 ./src/Support/FreeRtos/croutine.o
 .debug_aranges
                0x0000000000000000       0x50 ./src/Support/FreeRtos/croutine.o
 .debug_ranges  0x0000000000000000       0x58 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x20d ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/croutine.o
 .debug_macro   0x0000000000000000       0x49 ./src/Support/FreeRtos/croutine.o
 .debug_line    0x0000000000000000      0x50b ./src/Support/FreeRtos/croutine.o
 .debug_str     0x0000000000000000     0xa946 ./src/Support/FreeRtos/croutine.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/croutine.o
 .ARM.attributes
                0x0000000000000000       0x31 ./src/Support/FreeRtos/croutine.o
 .debug_frame   0x0000000000000000       0xf0 ./src/Support/FreeRtos/croutine.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/heap_1.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/heap_1.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/heap_1.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/heap_1.o
 .text.vPortInitialiseBlocks
                0x0000000000000000        0xc ./src/Support/FreeRtos/heap_1.o
 .text.xPortGetFreeHeapSize
                0x0000000000000000       0x10 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/heap_1.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/list.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/list.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/list.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x28 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/list.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/port.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/port.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/port.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/port.o
 .text.vPortEndScheduler
                0x0000000000000000        0x4 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/port.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/queue.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/queue.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/queue.o
 .text.prvQueueUnregisterQueue
                0x0000000000000000       0x28 ./src/Support/FreeRtos/queue.o
 .text.xQueueGenericReset
                0x0000000000000000       0x6c ./src/Support/FreeRtos/queue.o
 .text.xQueueGenericCreate
                0x0000000000000000       0x50 ./src/Support/FreeRtos/queue.o
 .text.xQueueCreateCountingSemaphore
                0x0000000000000000       0x1c ./src/Support/FreeRtos/queue.o
 .text.xQueueGiveMutexRecursive
                0x0000000000000000       0x34 ./src/Support/FreeRtos/queue.o
 .text.xQueueTakeMutexRecursive
                0x0000000000000000       0x3c ./src/Support/FreeRtos/queue.o
 .text.xQueueReceiveFromISR
                0x0000000000000000       0x70 ./src/Support/FreeRtos/queue.o
 .text.uxQueueMessagesWaiting
                0x0000000000000000       0x18 ./src/Support/FreeRtos/queue.o
 .text.uxQueueMessagesWaitingFromISR
                0x0000000000000000        0xc ./src/Support/FreeRtos/queue.o
 .text.vQueueDelete
                0x0000000000000000       0x1c ./src/Support/FreeRtos/queue.o
 .text.ucQueueGetQueueNumber
                0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .text.vQueueSetQueueNumber
                0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .text.ucQueueGetQueueType
                0x0000000000000000        0x8 ./src/Support/FreeRtos/queue.o
 .text.xQueueIsQueueEmptyFromISR
                0x0000000000000000       0x10 ./src/Support/FreeRtos/queue.o
 .text.xQueueIsQueueFullFromISR
                0x0000000000000000       0x14 ./src/Support/FreeRtos/queue.o
 .text.vQueueAddToRegistry
                0x0000000000000000       0x28 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x28 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/queue.o
 COMMON         0x0000000000000000       0x40 ./src/Support/FreeRtos/queue.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/tasks.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/tasks.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/tasks.o
 .text.prvListTaskWithinSingleList
                0x0000000000000000       0x84 ./src/Support/FreeRtos/tasks.o
 .text.vTaskDelete
                0x0000000000000000       0x78 ./src/Support/FreeRtos/tasks.o
 .text.uxTaskPriorityGet
                0x0000000000000000       0x20 ./src/Support/FreeRtos/tasks.o
 .text.vTaskPrioritySet
                0x0000000000000000       0xa4 ./src/Support/FreeRtos/tasks.o
 .text.xTaskIsTaskSuspended
                0x0000000000000000       0x30 ./src/Support/FreeRtos/tasks.o
 .text.vTaskResume
                0x0000000000000000       0x6c ./src/Support/FreeRtos/tasks.o
 .text.xTaskResumeFromISR
                0x0000000000000000       0x7c ./src/Support/FreeRtos/tasks.o
 .text.vTaskEndScheduler
                0x0000000000000000       0x14 ./src/Support/FreeRtos/tasks.o
 .text.xTaskGetTickCountFromISR
                0x0000000000000000       0x10 ./src/Support/FreeRtos/tasks.o
 .text.uxTaskGetNumberOfTasks
                0x0000000000000000        0xc ./src/Support/FreeRtos/tasks.o
 .text.vTaskDelayUntil
                0x0000000000000000       0x74 ./src/Support/FreeRtos/tasks.o
 .text.vTaskList
                0x0000000000000000       0xb4 ./src/Support/FreeRtos/tasks.o
 .text.vTaskSuspend
                0x0000000000000000       0x7c ./src/Support/FreeRtos/tasks.o
 .text.uxTaskGetTaskNumber
                0x0000000000000000        0xc ./src/Support/FreeRtos/tasks.o
 .text.vTaskSetTaskNumber
                0x0000000000000000        0x8 ./src/Support/FreeRtos/tasks.o
 .bss.pcStatusString.6552
                0x0000000000000000       0x28 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0xa0 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/tasks.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Support/FreeRtos/timers.o
 .text          0x0000000000000000        0x0 ./src/Support/FreeRtos/timers.o
 .data          0x0000000000000000        0x0 ./src/Support/FreeRtos/timers.o
 .bss           0x0000000000000000        0x0 ./src/Support/FreeRtos/timers.o
 .debug_info    0x0000000000000000       0x9f ./src/Support/FreeRtos/timers.o
 .debug_abbrev  0x0000000000000000       0x4e ./src/Support/FreeRtos/timers.o
 .debug_aranges
                0x0000000000000000       0x18 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x216 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x820 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x122 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x46 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x74 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x3a ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x241 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x117 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x22 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x137 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x4c ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x16 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x31a ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x2e ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x11 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x7c ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x21c ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x113 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x10 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x9a ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x20 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x11b ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x12 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x1f ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x5e ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x57 ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x9c ./src/Support/FreeRtos/timers.o
 .debug_macro   0x0000000000000000       0x61 ./src/Support/FreeRtos/timers.o
 .debug_line    0x0000000000000000      0x3ca ./src/Support/FreeRtos/timers.o
 .debug_str     0x0000000000000000     0xacbe ./src/Support/FreeRtos/timers.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/timers.o
 .ARM.attributes
                0x0000000000000000       0x31 ./src/Support/FreeRtos/timers.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Control.o
 .text          0x0000000000000000        0x0 ./src/Control.o
 .data          0x0000000000000000        0x0 ./src/Control.o
 .bss           0x0000000000000000        0x0 ./src/Control.o
 .debug_macro   0x0000000000000000      0x820 ./src/Control.o
 .debug_macro   0x0000000000000000       0x10 ./src/Control.o
 .debug_macro   0x0000000000000000      0x122 ./src/Control.o
 .debug_macro   0x0000000000000000       0xa0 ./src/Control.o
 .debug_macro   0x0000000000000000       0x7c ./src/Control.o
 .debug_macro   0x0000000000000000       0x22 ./src/Control.o
 .debug_macro   0x0000000000000000       0x46 ./src/Control.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Control.o
 .debug_macro   0x0000000000000000       0x22 ./src/Control.o
 .debug_macro   0x0000000000000000       0x74 ./src/Control.o
 .debug_macro   0x0000000000000000       0x10 ./src/Control.o
 .debug_macro   0x0000000000000000       0x1f ./src/Control.o
 .debug_macro   0x0000000000000000       0x3a ./src/Control.o
 .debug_macro   0x0000000000000000      0x241 ./src/Control.o
 .debug_macro   0x0000000000000000      0x117 ./src/Control.o
 .debug_macro   0x0000000000000000       0x22 ./src/Control.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Control.o
 .debug_macro   0x0000000000000000       0x10 ./src/Control.o
 .debug_macro   0x0000000000000000      0x137 ./src/Control.o
 .debug_macro   0x0000000000000000       0x4c ./src/Control.o
 .debug_macro   0x0000000000000000       0x16 ./src/Control.o
 .debug_macro   0x0000000000000000      0x31a ./src/Control.o
 .debug_macro   0x0000000000000000       0x2e ./src/Control.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Control.o
 .debug_macro   0x0000000000000000       0x11 ./src/Control.o
 .debug_macro   0x0000000000000000       0x7c ./src/Control.o
 .debug_macro   0x0000000000000000      0x21c ./src/Control.o
 .debug_macro   0x0000000000000000      0x113 ./src/Control.o
 .debug_macro   0x0000000000000000       0x10 ./src/Control.o
 .debug_macro   0x0000000000000000       0x20 ./src/Control.o
 .debug_macro   0x0000000000000000      0x11b ./src/Control.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Control.o
 .debug_macro   0x0000000000000000       0x12 ./src/Control.o
 .debug_macro   0x0000000000000000       0x1f ./src/Control.o
 .debug_macro   0x0000000000000000       0x9c ./src/Control.o
 .debug_macro   0x0000000000000000       0x5e ./src/Control.o
 .debug_macro   0x0000000000000000       0x57 ./src/Control.o
 .debug_macro   0x0000000000000000       0x16 ./src/Control.o
 .debug_macro   0x0000000000000000       0x28 ./src/Control.o
 .debug_macro   0x0000000000000000       0x34 ./src/Control.o
 .debug_macro   0x0000000000000000       0xa6 ./src/Control.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/Flasher.o
 .text          0x0000000000000000        0x0 ./src/Flasher.o
 .data          0x0000000000000000        0x0 ./src/Flasher.o
 .bss           0x0000000000000000        0x0 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x820 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x10 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x122 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x16 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x46 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x22 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x74 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x10 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x1f ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x3a ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x241 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x117 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x22 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0xb2 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x10 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x137 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x4c ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x16 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x31a ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x2e ./src/Flasher.o
 .debug_macro   0x0000000000000000       0xb8 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x11 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x7c ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x21c ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x113 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x10 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x9a ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x20 ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x11b ./src/Flasher.o
 .debug_macro   0x0000000000000000       0xb1 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x12 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x1f ./src/Flasher.o
 .debug_macro   0x0000000000000000      0x1ee ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x5e ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x57 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x10 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x9c ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x78 ./src/Flasher.o
 .debug_macro   0x0000000000000000       0x4c ./src/Flasher.o
 .group         0x0000000000000000        0x8 ./src/cr_startup_lpc11xx.o
 .text          0x0000000000000000        0x0 ./src/cr_startup_lpc11xx.o
 .data          0x0000000000000000        0x0 ./src/cr_startup_lpc11xx.o
 .bss           0x0000000000000000        0x0 ./src/cr_startup_lpc11xx.o
 .debug_macro   0x0000000000000000      0x820 ./src/cr_startup_lpc11xx.o
 .group         0x0000000000000000        0x8 ./src/crp.o
 .group         0x0000000000000000        0x8 ./src/crp.o
 .text          0x0000000000000000        0x0 ./src/crp.o
 .data          0x0000000000000000        0x0 ./src/crp.o
 .bss           0x0000000000000000        0x0 ./src/crp.o
 .debug_macro   0x0000000000000000      0x820 ./src/crp.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/main.o
 .text          0x0000000000000000        0x0 ./src/main.o
 .data          0x0000000000000000        0x0 ./src/main.o
 .bss           0x0000000000000000        0x0 ./src/main.o
 .debug_macro   0x0000000000000000      0x820 ./src/main.o
 .debug_macro   0x0000000000000000       0x10 ./src/main.o
 .debug_macro   0x0000000000000000      0x122 ./src/main.o
 .debug_macro   0x0000000000000000       0xa0 ./src/main.o
 .debug_macro   0x0000000000000000       0x22 ./src/main.o
 .debug_macro   0x0000000000000000       0x28 ./src/main.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/main.o
 .debug_macro   0x0000000000000000       0x22 ./src/main.o
 .debug_macro   0x0000000000000000       0x74 ./src/main.o
 .debug_macro   0x0000000000000000       0x10 ./src/main.o
 .debug_macro   0x0000000000000000       0x1f ./src/main.o
 .debug_macro   0x0000000000000000       0x3a ./src/main.o
 .debug_macro   0x0000000000000000      0x241 ./src/main.o
 .debug_macro   0x0000000000000000      0x117 ./src/main.o
 .debug_macro   0x0000000000000000       0x22 ./src/main.o
 .debug_macro   0x0000000000000000       0xb2 ./src/main.o
 .debug_macro   0x0000000000000000       0x10 ./src/main.o
 .debug_macro   0x0000000000000000      0x137 ./src/main.o
 .debug_macro   0x0000000000000000       0x4c ./src/main.o
 .debug_macro   0x0000000000000000       0x16 ./src/main.o
 .debug_macro   0x0000000000000000      0x31a ./src/main.o
 .debug_macro   0x0000000000000000       0x2e ./src/main.o
 .debug_macro   0x0000000000000000       0xb8 ./src/main.o
 .debug_macro   0x0000000000000000       0x11 ./src/main.o
 .debug_macro   0x0000000000000000       0x7c ./src/main.o
 .debug_macro   0x0000000000000000      0x21c ./src/main.o
 .debug_macro   0x0000000000000000      0x113 ./src/main.o
 .debug_macro   0x0000000000000000       0x10 ./src/main.o
 .debug_macro   0x0000000000000000       0x20 ./src/main.o
 .debug_macro   0x0000000000000000       0x10 ./src/main.o
 .debug_macro   0x0000000000000000       0x46 ./src/main.o
 .debug_macro   0x0000000000000000      0x121 ./src/main.o
 .debug_macro   0x0000000000000000       0xb1 ./src/main.o
 .debug_macro   0x0000000000000000       0x12 ./src/main.o
 .debug_macro   0x0000000000000000       0x1f ./src/main.o
 .debug_macro   0x0000000000000000      0x1ee ./src/main.o
 .debug_macro   0x0000000000000000       0x5e ./src/main.o
 .debug_macro   0x0000000000000000       0x57 ./src/main.o
 .debug_macro   0x0000000000000000       0x9c ./src/main.o
 .debug_macro   0x0000000000000000       0x78 ./src/main.o
 .debug_macro   0x0000000000000000       0x4c ./src/main.o
 .debug_macro   0x0000000000000000       0x34 ./src/main.o
 .debug_macro   0x0000000000000000       0xa6 ./src/main.o
 .debug_macro   0x0000000000000000       0x22 ./src/main.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .group         0x0000000000000000        0x8 ./src/sysinit.o
 .text          0x0000000000000000        0x0 ./src/sysinit.o
 .data          0x0000000000000000        0x0 ./src/sysinit.o
 .bss           0x0000000000000000        0x0 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x820 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x10 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x122 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x5b9 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x22 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x7b ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x10 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x1f ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x3a ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x241 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x117 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x22 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0xb2 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x10 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x137 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x4c ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x16 ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x31a ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x2e ./src/sysinit.o
 .debug_macro   0x0000000000000000       0xb8 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x11 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x7c ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x21c ./src/sysinit.o
 .debug_macro   0x0000000000000000      0x113 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x10 ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x9a ./src/sysinit.o
 .debug_macro   0x0000000000000000       0x20 ./src/sysinit.o
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_LED_Init
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.__sys_write
                0x0000000000000000        0x4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.__sys_readc
                0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_UARTPutChar
                0x0000000000000000       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_UARTGetChar
                0x0000000000000000       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_UARTPutSTR
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_Debug_Init
                0x0000000000000000       0x38 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_LED_Set
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_LED_Test
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_LED_Toggle
                0x0000000000000000       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .text.Board_Init
                0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .rodata.ExtRateIn
                0x0000000000000000        0x4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x9a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000000000       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x9a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000000000       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text.Chip_Clock_SetPLLBypass
                0x0000000000000000       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text.Chip_Clock_SetWDTClockSource
                0x0000000000000000       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text.Chip_Clock_SetCLKOUTSource
                0x0000000000000000       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_DeInit
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_WriteDirBit
                0x0000000000000000       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_SetDir
                0x0000000000000000       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_SetPinDIR
                0x0000000000000000       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_SetPortDIR
                0x0000000000000000       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .text.Chip_GPIO_SetupPinInt
                0x0000000000000000       0x6c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.setSlaveAddr
                0x0000000000000000       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_DeInit
                0x0000000000000000       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_GetClockRate
                0x0000000000000000       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_GetMasterEventHandler
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_MasterRead
                0x0000000000000000       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_SlaveSetup
                0x0000000000000000       0x64 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_Disable
                0x0000000000000000       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .text.RingBuffer_InsertMult
                0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x0000000000000000       0x74 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .text.Chip_SYSCTL_SetDeepSleepPD
                0x0000000000000000       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .text.Chip_SYSCTL_SetWakeup
                0x0000000000000000       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .group         0x0000000000000000        0x8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .data          0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .bss           0x0000000000000000        0x0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text.Chip_UART_DeInit
                0x0000000000000000       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text.Chip_UART_Read
                0x0000000000000000       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text.Chip_UART_ReadBlocking
                0x0000000000000000       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text.Chip_UART_SendRB
                0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text.Chip_UART_SetBaudFDR
                0x0000000000000000       0x84 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x122 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x5b9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x7b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x1f /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x3a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x117 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x22 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0xb2 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x137 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x4c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x16 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x31a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x2e /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0xb8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x11 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x21c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .debug_macro   0x0000000000000000      0x113 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isalnum  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isalpha  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.iscntrl  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isdigit  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isgraph  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.islower  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isprint  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.ispunct  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isspace  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isupper  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.isxdigit
                0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text.tolower  0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.fp_round
                0x0000000000000000       0x48 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.pr_dec.constprop.1
                0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.fprintf  0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.printf_char
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.sprintf  0x0000000000000000       0x70 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.fp_display
                0x0000000000000000      0x980 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.snprintf
                0x0000000000000000       0x6c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.vfprintf
                0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.vprintf  0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.vsprintf
                0x0000000000000000       0x68 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.vsnprintf
                0x0000000000000000       0x5c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text.printf   0x0000000000000000       0x50 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .rodata.str1.1
                0x0000000000000000       0x35 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fpprintf.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text.no_fp_display
                0x0000000000000000        0x4 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text.__vfprintf
                0x0000000000000000      0xd4c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._fprintf
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._printf_char
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._sprintf
                0x0000000000000000       0x70 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._snprintf
                0x0000000000000000       0x6c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._vfprintf
                0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._vprintf
                0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._vsprintf
                0x0000000000000000       0x68 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._vsnprintf
                0x0000000000000000       0x5c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text._printf  0x0000000000000000       0x50 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .rodata.str1.1
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(printf.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.cr_rd_int
                0x0000000000000000      0x1f0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.vfscanf  0x0000000000000000      0x980 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text._ncc_vfscanf
                0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.fscanf   0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.scanf    0x0000000000000000       0x20 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.sscanf   0x0000000000000000       0x4a /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.strtod   0x0000000000000000       0x48 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.strtof   0x0000000000000000        0xc /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.strtoul  0x0000000000000000       0x84 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.atof     0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.atoi     0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.atol     0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .rodata.str1.1
                0x0000000000000000        0x6 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .data.neginf.4367
                0x0000000000000000        0x4 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .data.posinf.4366
                0x0000000000000000        0x4 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.fgetc    0x0000000000000000       0x1c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.fputc    0x0000000000000000       0x1e /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.getc     0x0000000000000000       0x1c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.getchar  0x0000000000000000       0x24 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.putc     0x0000000000000000       0x1e /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.putchar  0x0000000000000000       0x28 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.feof     0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.ferror   0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text.clearerr
                0x0000000000000000       0x10 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 COMMON         0x0000000000000000      0x140 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(stdio.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .text.strcat   0x0000000000000000       0x1a /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strcat.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .text.ungetc   0x0000000000000000       0x3c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ungetc.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .text._Csys_read_
                0x0000000000000000       0x22 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .text.__filbuf
                0x0000000000000000      0x188 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .text._fillb2  0x0000000000000000       0x1c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__fillbuf.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .text._deferredlazyseek
                0x0000000000000000       0x44 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .text.__flsbuf
                0x0000000000000000      0x154 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_deferredlazyseek.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .text._fflush  0x0000000000000000       0x64 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_fflush.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .text._frexpl  0x0000000000000000       0x80 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_frexpl.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .rodata.__huge_val
                0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .rodata.__huge_vall
                0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_hugeval.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .text._ldexpl  0x0000000000000000       0x60 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_ldexpl.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .text._Cwritebuf
                0x0000000000000000       0x6c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_writebuf.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text.malloc   0x0000000000000000       0xc0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text.free     0x0000000000000000        0xe /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text.calloc   0x0000000000000000       0x50 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text._Csys_alloc
                0x0000000000000000       0x20 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text.realloc  0x0000000000000000       0x24 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .rodata.str1.1
                0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(alloc.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .text.fseek    0x0000000000000000       0xf8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(fseek.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .text.ftell    0x0000000000000000       0x4c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ftell.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .text._init_alloc
                0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 COMMON         0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__init_alloc.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .text._sbrk    0x0000000000000000       0x40 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_sbrk.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .text.__check_heap_overflow
                0x0000000000000000       0x2c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(_cr_check_heap.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dmul
                0x0000000000000000      0x188 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_ddiv
                0x0000000000000000      0x160 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dsub
                0x0000000000000000      0x1e8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dadd
                0x0000000000000000      0x148 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_drsub
                0x0000000000000000       0x26 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dneg
                0x0000000000000000       0x10 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_d2f
                0x0000000000000000       0x5c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_d2iz
                0x0000000000000000       0x48 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_d2uiz
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_d2lz
                0x0000000000000000       0x84 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_d2ulz
                0x0000000000000000       0x58 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__bhs_ui2d
                0x0000000000000000       0x5e /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__bhs_ul2d
                0x0000000000000000       0xb4 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_i2d
                0x0000000000000000       0x16 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_ui2d
                0x0000000000000000        0xc /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_l2d
                0x0000000000000000       0x20 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_ul2d
                0x0000000000000000        0xc /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmpeq
                0x0000000000000000       0x38 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmplt
                0x0000000000000000       0x78 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmpgt
                0x0000000000000000       0x68 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmple
                0x0000000000000000       0x78 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmpge
                0x0000000000000000       0x70 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_dcmpun
                0x0000000000000000       0x1c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_cdcmple
                0x0000000000000000       0x2e /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text.__aeabi_cdrcmple
                0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .ARM.attributes
                0x0000000000000000       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(double.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_lmul
                0x0000000000000000       0x2e /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_llsl
                0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_llsr
                0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_lasr
                0x0000000000000000       0x18 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_lcmp
                0x0000000000000000       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text.__aeabi_llong_ulcmp
                0x0000000000000000       0x10 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .ARM.attributes
                0x0000000000000000       0x21 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(llong.o)
 .text          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
 .data          0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
 .bss           0x0000000000000000        0x0 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
 .text.__aeabi_memmove
                0x0000000000000000       0x1c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
 .text.__aeabi_memclr
                0x0000000000000000        0x6 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
 .text.__aeabi_memset
                0x0000000000000000        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)

Memory Configuration

Name             Origin             Length             Attributes
MFlash32         0x0000000000000000 0x0000000000008000 xr
RamLoc4          0x0000000010000000 0x0000000000001000 xrw
*default*        0x0000000000000000 0xffffffffffffffff

Linker script and memory map

LOAD ./src/Support/Support/Menu.o
LOAD ./src/Support/Support/Serial.o
LOAD ./src/Support/Support/fastTimer.o
LOAD ./src/Support/Support/i2c.o
LOAD ./src/Support/Support/mma8451.o
LOAD ./src/Support/Support/parser.o
LOAD ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
LOAD ./src/Support/FreeRtos/croutine.o
LOAD ./src/Support/FreeRtos/heap_1.o
LOAD ./src/Support/FreeRtos/list.o
LOAD ./src/Support/FreeRtos/port.o
LOAD ./src/Support/FreeRtos/queue.o
LOAD ./src/Support/FreeRtos/tasks.o
LOAD ./src/Support/FreeRtos/timers.o
LOAD ./src/Control.o
LOAD ./src/Flasher.o
LOAD ./src/cr_startup_lpc11xx.o
LOAD ./src/crp.o
LOAD ./src/main.o
LOAD ./src/sysinit.o
LOAD /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a
LOAD /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a
START GROUP
LOAD /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a
LOAD /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a
END GROUP
                0x0000000000008000                __top_MFlash32 = 0x8000
                0x0000000010001000                __top_RamLoc4 = 0x10001000

.text           0x0000000000000000     0x31c0
 FILL mask 0xff
                0x0000000000000000                __vectors_start__ = ABSOLUTE (.)
 *(.isr_vector)
 .isr_vector    0x0000000000000000       0xc0 ./src/cr_startup_lpc11xx.o
                0x0000000000000000                g_pfnVectors
                0x00000000000000c0                . = ALIGN (0x4)
                0x00000000000000c0                __section_table_start = .
                0x00000000000000c0                __data_section_table = .
                0x00000000000000c0        0x4 LONG 0x31c0 LOADADDR (.data)
                0x00000000000000c4        0x4 LONG 0x10000000 ADDR (.data)
                0x00000000000000c8        0x4 LONG 0x24 SIZEOF (.data)
                0x00000000000000cc                __data_section_table_end = .
                0x00000000000000cc                __bss_section_table = .
                0x00000000000000cc        0x4 LONG 0x10000024 ADDR (.bss)
                0x00000000000000d0        0x4 LONG 0xe28 SIZEOF (.bss)
                0x00000000000000d4                __bss_section_table_end = .
                0x00000000000000d4                __section_table_end = .
 *(.after_vectors*)
 .after_vectors
                0x00000000000000d4       0x90 ./src/cr_startup_lpc11xx.o
                0x00000000000000d4                NMI_Handler
                0x00000000000000d8                HardFault_Handler
                0x00000000000000e8                TIMER16_0_IRQHandler
                0x00000000000000e8                TIMER32_0_IRQHandler
                0x00000000000000e8                WAKEUP_IRQHandler
                0x00000000000000e8                WDT_IRQHandler
                0x00000000000000e8                PIOINT3_IRQHandler
                0x00000000000000e8                TIMER32_1_IRQHandler
                0x00000000000000e8                IntDefaultHandler
                0x00000000000000e8                PIOINT1_IRQHandler
                0x00000000000000e8                CAN_IRQHandler
                0x00000000000000e8                SSP0_IRQHandler
                0x00000000000000e8                TIMER16_1_IRQHandler
                0x00000000000000e8                ADC_IRQHandler
                0x00000000000000e8                SSP1_IRQHandler
                0x00000000000000e8                PIOINT2_IRQHandler
                0x00000000000000e8                BOD_IRQHandler
                0x00000000000000ec                data_init
                0x0000000000000104                bss_init
                0x0000000000000118                ResetISR
                0x00000000000002fc                . = 0x2fc
 *fill*         0x0000000000000164      0x198 ff
                0x00000000000002fc                PROVIDE (__CRP_WORD_START__, .)
 *(.crp)
 .crp           0x00000000000002fc        0x4 ./src/crp.o
                0x00000000000002fc                CRP_WORD
                0x0000000000000300                PROVIDE (__CRP_WORD_END__, .)
                0x0000000000000001                ASSERT (! ((__CRP_WORD_START__ == __CRP_WORD_END__)), Linker CRP Enabled, but no CRP_WORD provided within application)
 *(.text*)
 .text.Init_UART_PinMux
                0x0000000000000300       0x14 ./src/Support/Support/Serial.o
 .text.convHex  0x0000000000000314       0x24 ./src/Support/Support/Serial.o
 .text.UART_IRQHandler
                0x0000000000000338       0x1c ./src/Support/Support/Serial.o
                0x0000000000000338                UART_IRQHandler
 .text.serialInit
                0x0000000000000354       0x68 ./src/Support/Support/Serial.o
                0x0000000000000354                serialInit
 .text.serialRead
                0x00000000000003bc       0x18 ./src/Support/Support/Serial.o
                0x00000000000003bc                serialRead
 .text.serialWrite
                0x00000000000003d4       0x10 ./src/Support/Support/Serial.o
                0x00000000000003d4                serialWrite
 .text.serialWrites
                0x00000000000003e4       0x18 ./src/Support/Support/Serial.o
                0x00000000000003e4                serialWrites
 .text.Fgets    0x00000000000003fc      0x100 ./src/Support/Support/Serial.o
                0x00000000000003fc                Fgets
 .text.serialWriteDEC
                0x00000000000004fc       0x94 ./src/Support/Support/Serial.o
                0x00000000000004fc                serialWriteDEC
 .text.serialWriteHEX
                0x0000000000000590       0x38 ./src/Support/Support/Serial.o
                0x0000000000000590                serialWriteHEX
 .text.Init_I2C_PinMux
                0x00000000000005c8       0x24 ./src/Support/Support/i2c.o
 .text.i2c_state_handling
                0x00000000000005ec       0x1c ./src/Support/Support/i2c.o
 .text.i2c_set_mode
                0x0000000000000608       0x50 ./src/Support/Support/i2c.o
 .text.I2C_IRQHandler
                0x0000000000000658        0xc ./src/Support/Support/i2c.o
                0x0000000000000658                I2C_IRQHandler
 .text.i2cInit  0x0000000000000664       0x20 ./src/Support/Support/i2c.o
                0x0000000000000664                i2cInit
 .text.i2cCmdWrite
                0x0000000000000684       0x30 ./src/Support/Support/i2c.o
                0x0000000000000684                i2cCmdWrite
 .text.i2cCmdRead
                0x00000000000006b4       0x14 ./src/Support/Support/i2c.o
                0x00000000000006b4                i2cCmdRead
 .text.readMMA8451Acceleration
                0x00000000000006c8       0x50 ./src/Support/Support/mma8451.o
                0x00000000000006c8                readMMA8451Acceleration
 .text.readMMA8451Reg
                0x0000000000000718       0x24 ./src/Support/Support/mma8451.o
                0x0000000000000718                readMMA8451Reg
 .text.writeMMA8451Reg
                0x000000000000073c       0x24 ./src/Support/Support/mma8451.o
                0x000000000000073c                writeMMA8451Reg
 .text.initMMA8451
                0x0000000000000760       0x6c ./src/Support/Support/mma8451.o
                0x0000000000000760                initMMA8451
 .text.parseInit
                0x00000000000007cc       0x1c ./src/Support/Support/parser.o
                0x00000000000007cc                parseInit
 .text.parseGetNext
                0x00000000000007e8       0x78 ./src/Support/Support/parser.o
                0x00000000000007e8                parseGetNext
 .text.vApplicationMallocFailedHook
                0x0000000000000860        0x4 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
                0x0000000000000860                vApplicationMallocFailedHook
 .text.vApplicationIdleHook
                0x0000000000000864        0x4 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
                0x0000000000000864                vApplicationIdleHook
 .text.vApplicationStackOverflowHook
                0x0000000000000868        0x4 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
                0x0000000000000868                vApplicationStackOverflowHook
 .text.pvPortMalloc
                0x000000000000086c       0x68 ./src/Support/FreeRtos/heap_1.o
                0x000000000000086c                pvPortMalloc
 .text.vPortFree
                0x00000000000008d4        0xc ./src/Support/FreeRtos/heap_1.o
                0x00000000000008d4                vPortFree
 .text.vListInitialise
                0x00000000000008e0       0x18 ./src/Support/FreeRtos/list.o
                0x00000000000008e0                vListInitialise
 .text.vListInitialiseItem
                0x00000000000008f8        0x8 ./src/Support/FreeRtos/list.o
                0x00000000000008f8                vListInitialiseItem
 .text.vListInsertEnd
                0x0000000000000900       0x1c ./src/Support/FreeRtos/list.o
                0x0000000000000900                vListInsertEnd
 .text.vListInsert
                0x000000000000091c       0x30 ./src/Support/FreeRtos/list.o
                0x000000000000091c                vListInsert
 .text.uxListRemove
                0x000000000000094c       0x28 ./src/Support/FreeRtos/list.o
                0x000000000000094c                uxListRemove
 .text.vPortStartFirstTask
                0x0000000000000974       0x10 ./src/Support/FreeRtos/port.o
 .text.prvSetupTimerInterrupt
                0x0000000000000984       0x28 ./src/Support/FreeRtos/port.o
 .text.pxPortInitialiseStack
                0x00000000000009ac       0x18 ./src/Support/FreeRtos/port.o
                0x00000000000009ac                pxPortInitialiseStack
 .text.SVC_Handler
                0x00000000000009c4       0x28 ./src/Support/FreeRtos/port.o
                0x00000000000009c4                SVC_Handler
 .text.xPortStartScheduler
                0x00000000000009ec       0x34 ./src/Support/FreeRtos/port.o
                0x00000000000009ec                xPortStartScheduler
 .text.vPortYield
                0x0000000000000a20       0x18 ./src/Support/FreeRtos/port.o
                0x0000000000000a20                vPortYield
 .text.vPortEnterCritical
                0x0000000000000a38       0x18 ./src/Support/FreeRtos/port.o
                0x0000000000000a38                vPortEnterCritical
 .text.vPortExitCritical
                0x0000000000000a50       0x14 ./src/Support/FreeRtos/port.o
                0x0000000000000a50                vPortExitCritical
 .text.PendSV_Handler
                0x0000000000000a64       0x44 ./src/Support/FreeRtos/port.o
                0x0000000000000a64                PendSV_Handler
 .text.SysTick_Handler
                0x0000000000000aa8       0x18 ./src/Support/FreeRtos/port.o
                0x0000000000000aa8                SysTick_Handler
 .text.prvIsQueueFull
                0x0000000000000ac0       0x1c ./src/Support/FreeRtos/queue.o
 .text.prvIsQueueEmpty
                0x0000000000000adc       0x18 ./src/Support/FreeRtos/queue.o
 .text.prvCopyDataToQueue
                0x0000000000000af4       0x64 ./src/Support/FreeRtos/queue.o
 .text.prvCopyDataFromQueue
                0x0000000000000b58       0x24 ./src/Support/FreeRtos/queue.o
 .text.prvUnlockQueue
                0x0000000000000b7c       0x70 ./src/Support/FreeRtos/queue.o
 .text.xQueueGenericSend
                0x0000000000000bec       0xfc ./src/Support/FreeRtos/queue.o
                0x0000000000000bec                xQueueGenericSend
 .text.xQueueCreateMutex
                0x0000000000000ce8       0x54 ./src/Support/FreeRtos/queue.o
                0x0000000000000ce8                xQueueCreateMutex
 .text.xQueueGenericSendFromISR
                0x0000000000000d3c       0x70 ./src/Support/FreeRtos/queue.o
                0x0000000000000d3c                xQueueGenericSendFromISR
 .text.xQueueGenericReceive
                0x0000000000000dac      0x140 ./src/Support/FreeRtos/queue.o
                0x0000000000000dac                xQueueGenericReceive
 .text.usTaskCheckFreeStackSpace
                0x0000000000000eec       0x14 ./src/Support/FreeRtos/tasks.o
 .text.prvDeleteTCB
                0x0000000000000f00       0x14 ./src/Support/FreeRtos/tasks.o
 .text.prvAllocateTCBAndStack
                0x0000000000000f14       0x38 ./src/Support/FreeRtos/tasks.o
 .text.prvInitialiseTCBVariables
                0x0000000000000f4c       0x38 ./src/Support/FreeRtos/tasks.o
 .text.prvInitialiseTaskLists
                0x0000000000000f84       0x68 ./src/Support/FreeRtos/tasks.o
 .text.prvAddCurrentTaskToDelayedList
                0x0000000000000fec       0x54 ./src/Support/FreeRtos/tasks.o
 .text.xTaskGenericCreate
                0x0000000000001040      0x134 ./src/Support/FreeRtos/tasks.o
                0x0000000000001040                xTaskGenericCreate
 .text.vTaskStartScheduler
                0x0000000000001174       0x4c ./src/Support/FreeRtos/tasks.o
                0x0000000000001174                vTaskStartScheduler
 .text.vTaskSuspendAll
                0x00000000000011c0       0x10 ./src/Support/FreeRtos/tasks.o
                0x00000000000011c0                vTaskSuspendAll
 .text.xTaskGetTickCount
                0x00000000000011d0       0x18 ./src/Support/FreeRtos/tasks.o
                0x00000000000011d0                xTaskGetTickCount
 .text.vTaskIncrementTick
                0x00000000000011e8      0x100 ./src/Support/FreeRtos/tasks.o
                0x00000000000011e8                vTaskIncrementTick
 .text.xTaskResumeAll
                0x00000000000012e8       0xdc ./src/Support/FreeRtos/tasks.o
                0x00000000000012e8                xTaskResumeAll
 .text.vTaskDelay
                0x00000000000013c4       0x3c ./src/Support/FreeRtos/tasks.o
                0x00000000000013c4                vTaskDelay
 .text.prvCheckTasksWaitingTermination
                0x0000000000001400       0x54 ./src/Support/FreeRtos/tasks.o
 .text.prvIdleTask
                0x0000000000001454       0x1c ./src/Support/FreeRtos/tasks.o
 .text.vTaskSwitchContext
                0x0000000000001470       0xb8 ./src/Support/FreeRtos/tasks.o
                0x0000000000001470                vTaskSwitchContext
 .text.vTaskPlaceOnEventList
                0x0000000000001528       0x48 ./src/Support/FreeRtos/tasks.o
                0x0000000000001528                vTaskPlaceOnEventList
 .text.xTaskRemoveFromEventList
                0x0000000000001570       0x78 ./src/Support/FreeRtos/tasks.o
                0x0000000000001570                xTaskRemoveFromEventList
 .text.vTaskSetTimeOutState
                0x00000000000015e8       0x20 ./src/Support/FreeRtos/tasks.o
                0x00000000000015e8                vTaskSetTimeOutState
 .text.xTaskCheckForTimeOut
                0x0000000000001608       0x6c ./src/Support/FreeRtos/tasks.o
                0x0000000000001608                xTaskCheckForTimeOut
 .text.vTaskMissedYield
                0x0000000000001674        0xc ./src/Support/FreeRtos/tasks.o
                0x0000000000001674                vTaskMissedYield
 .text.uxTaskGetStackHighWaterMark
                0x0000000000001680       0x18 ./src/Support/FreeRtos/tasks.o
                0x0000000000001680                uxTaskGetStackHighWaterMark
 .text.xTaskGetCurrentTaskHandle
                0x0000000000001698        0xc ./src/Support/FreeRtos/tasks.o
                0x0000000000001698                xTaskGetCurrentTaskHandle
 .text.vTaskPriorityInherit
                0x00000000000016a4       0x74 ./src/Support/FreeRtos/tasks.o
                0x00000000000016a4                vTaskPriorityInherit
 .text.vTaskPriorityDisinherit
                0x0000000000001718       0x48 ./src/Support/FreeRtos/tasks.o
                0x0000000000001718                vTaskPriorityDisinherit
 .text.haveDataCheck
                0x0000000000001760       0x1c ./src/Control.o
 .text.setRate  0x000000000000177c       0x34 ./src/Control.o
 .text.setRange
                0x00000000000017b0       0x3c ./src/Control.o
 .text.setTrigger
                0x00000000000017ec       0x3c ./src/Control.o
 .text.printHelp
                0x0000000000001828       0x88 ./src/Control.o
 .text.dumpData
                0x00000000000018b0       0xb4 ./src/Control.o
 .text.runCapture
                0x0000000000001964      0x134 ./src/Control.o
 .text.showTasks
                0x0000000000001a98       0x68 ./src/Control.o
 .text.Control  0x0000000000001b00      0x120 ./src/Control.o
                0x0000000000001b00                Control
 .text.PIOINT0_IRQHandler
                0x0000000000001c20       0x28 ./src/Control.o
                0x0000000000001c20                PIOINT0_IRQHandler
 .text.Flasher  0x0000000000001c48       0x98 ./src/Flasher.o
                0x0000000000001c48                Flasher
 .text.MyBoard_Init
                0x0000000000001ce0       0x40 ./src/main.o
 .text.main     0x0000000000001d20       0xb0 ./src/main.o
                0x0000000000001d20                main
 .text.EnableCapture
                0x0000000000001dd0       0x58 ./src/main.o
                0x0000000000001dd0                EnableCapture
 .text.SystemInit
                0x0000000000001e28        0x8 ./src/sysinit.o
                0x0000000000001e28                SystemInit
 .text.SystemSetupMuxing
                0x0000000000001e30       0x38 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .text.SystemSetupClocking
                0x0000000000001e68       0x60 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .text.Board_SystemInit
                0x0000000000001ec8        0xc /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
                0x0000000000001ec8                Board_SystemInit
 .text.SystemCoreClockUpdate
                0x0000000000001ed4       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
                0x0000000000001ed4                SystemCoreClockUpdate
 .text.Chip_Clock_GetWDTLFORate
                0x0000000000001ee4       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text.Chip_Clock_GetPLLFreq
                0x0000000000001f04        0xc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .text.Chip_Clock_SetSystemPLLSource
                0x0000000000001f10       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f10                Chip_Clock_SetSystemPLLSource
 .text.Chip_Clock_SetMainClockSource
                0x0000000000001f24       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f24                Chip_Clock_SetMainClockSource
 .text.Chip_Clock_GetWDTOSCRate
                0x0000000000001f38       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f38                Chip_Clock_GetWDTOSCRate
 .text.Chip_Clock_GetSystemPLLInClockRate
                0x0000000000001f48       0x2c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f48                Chip_Clock_GetSystemPLLInClockRate
 .text.Chip_Clock_GetSystemPLLOutClockRate
                0x0000000000001f74       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f74                Chip_Clock_GetSystemPLLOutClockRate
 .text.Chip_Clock_GetMainClockRate
                0x0000000000001f8c       0x40 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001f8c                Chip_Clock_GetMainClockRate
 .text.Chip_Clock_GetSystemClockRate
                0x0000000000001fcc       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                0x0000000000001fcc                Chip_Clock_GetSystemClockRate
 .text.Chip_GPIO_Init
                0x0000000000001fe0       0x14 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
                0x0000000000001fe0                Chip_GPIO_Init
 .text.isSlaveAddrMatching
                0x0000000000001ff4       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.lookupSlaveIndex
                0x0000000000002004       0x60 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .text.Chip_I2C_EventHandler
                0x0000000000002064       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002064                Chip_I2C_EventHandler
 .text.handleMasterXferState
                0x0000000000002080       0xbc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002080                handleMasterXferState
 .text.getSlaveIndex
                0x000000000000213c       0x34 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x000000000000213c                getSlaveIndex
 .text.handleSlaveXferState
                0x0000000000002170       0xa4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002170                handleSlaveXferState
 .text.Chip_I2C_Init
                0x0000000000002214       0x34 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002214                Chip_I2C_Init
 .text.Chip_I2C_SetClockRate
                0x0000000000002248       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002248                Chip_I2C_SetClockRate
 .text.Chip_I2C_SetMasterEventHandler
                0x0000000000002278       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002278                Chip_I2C_SetMasterEventHandler
 .text.Chip_I2C_MasterTransfer
                0x000000000000229c       0x64 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x000000000000229c                Chip_I2C_MasterTransfer
 .text.Chip_I2C_MasterSend
                0x0000000000002300       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002300                Chip_I2C_MasterSend
 .text.Chip_I2C_MasterCmdRead
                0x0000000000002330       0x38 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002330                Chip_I2C_MasterCmdRead
 .text.Chip_I2C_IsMasterActive
                0x0000000000002368       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002368                Chip_I2C_IsMasterActive
 .text.Chip_I2C_MasterStateHandler
                0x000000000000238c       0x34 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x000000000000238c                Chip_I2C_MasterStateHandler
 .text.Chip_I2C_SlaveStateHandler
                0x00000000000023c0       0x64 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x00000000000023c0                Chip_I2C_SlaveStateHandler
 .text.Chip_I2C_IsStateChanged
                0x0000000000002424       0x18 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000000002424                Chip_I2C_IsStateChanged
 .text.Chip_I2C_EventHandlerPolling
                0x000000000000243c       0x34 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x000000000000243c                Chip_I2C_EventHandlerPolling
 .text.RingBuffer_Init
                0x0000000000002470       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                0x0000000000002470                RingBuffer_Init
 .text.RingBuffer_Insert
                0x0000000000002480       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                0x0000000000002480                RingBuffer_Insert
 .text.RingBuffer_Pop
                0x00000000000024b0       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                0x00000000000024b0                RingBuffer_Pop
 .text.RingBuffer_PopMult
                0x00000000000024e0       0x7c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                0x00000000000024e0                RingBuffer_PopMult
 .text.Chip_SYSCTL_PowerDown
                0x000000000000255c       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
                0x000000000000255c                Chip_SYSCTL_PowerDown
 .text.Chip_SYSCTL_PowerUp
                0x0000000000002578       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
                0x0000000000002578                Chip_SYSCTL_PowerUp
 .text.Chip_UART_Init
                0x000000000000259c       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x000000000000259c                Chip_UART_Init
 .text.Chip_UART_Send
                0x00000000000025c4       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x00000000000025c4                Chip_UART_Send
 .text.Chip_UART_SendBlocking
                0x00000000000025e4       0x24 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x00000000000025e4                Chip_UART_SendBlocking
 .text.Chip_UART_SetBaud
                0x0000000000002608       0x3c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x0000000000002608                Chip_UART_SetBaud
 .text.Chip_UART_RXIntHandlerRB
                0x0000000000002644       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x0000000000002644                Chip_UART_RXIntHandlerRB
 .text.Chip_UART_TXIntHandlerRB
                0x000000000000266c       0x2c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x000000000000266c                Chip_UART_TXIntHandlerRB
 .text.Chip_UART_ReadRB
                0x0000000000002698       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x0000000000002698                Chip_UART_ReadRB
 .text.Chip_UART_IRQRBHandler
                0x00000000000026a8       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                0x00000000000026a8                Chip_UART_IRQRBHandler
 .text.memcpy   0x00000000000026d8        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
                0x00000000000026d8                memcpy
 .text.memset   0x00000000000026e0        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
                0x00000000000026e0                memset
 .text.__weak_main
                0x00000000000026e8        0x8 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
                0x00000000000026e8                __main
                0x00000000000026e8                __weak_main
 .text.toupper  0x00000000000026f0       0x14 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
                0x00000000000026f0                toupper
 .text.memcmp   0x0000000000002704       0x3a /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
                0x0000000000002704                memcmp
 *fill*         0x000000000000273e        0x2 
 .text.ch_val   0x0000000000002740       0x30 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text._strtoul
                0x0000000000002770       0xcc /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .text.strtol   0x000000000000283c       0x80 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
                0x000000000000283c                strtol
 .text.strlen   0x00000000000028bc       0x54 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
                0x00000000000028bc                strlen
 .text.strncpy  0x0000000000002910       0x58 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
                0x0000000000002910                strncpy
 .text.__aeabi_division_idivmod
                0x0000000000002968       0x78 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
                0x0000000000002968                __aeabi_idiv
                0x0000000000002968                __aeabi_idivmod
                0x000000000000296e                __aeabi_uidiv
                0x000000000000296e                __aeabi_uidivmod
 .text.__aeabi_division_idiv0
                0x00000000000029e0        0x2 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
                0x00000000000029e0                __aeabi_idiv0
 .text.__aeabi_memcpy
                0x00000000000029e2       0x2c /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
                0x00000000000029e2                __aeabi_memcpy
                0x00000000000029e2                __aeabi_memcpy4
                0x00000000000029e2                __aeabi_memcpy8
 .text.__aeabi_memset_lowlevel
                0x0000000000002a0e       0x2a /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)
                0x0000000000002a0e                __aeabi_lowlevel_memset
 *(.rodata .rodata.* .constdata .constdata.*)
 .rodata.str1.4
                0x0000000000002a38        0xd ./src/Support/Support/Serial.o
                                         0x10 (size before relaxing)
 *fill*         0x0000000000002a45        0x3 
 .rodata.ucExpectedStackBytes.6465
                0x0000000000002a48       0x14 ./src/Support/FreeRtos/tasks.o
 .rodata.str1.4
                0x0000000000002a5c       0x19 ./src/Support/FreeRtos/tasks.o
                                         0x20 (size before relaxing)
 *fill*         0x0000000000002a75        0x3 
 .rodata        0x0000000000002a78       0x38 ./src/Control.o
 .rodata.str1.4
                0x0000000000002ab0      0x1fb ./src/Control.o
                                        0x200 (size before relaxing)
 *fill*         0x0000000000002cab        0x1 
 .rodata.str1.4
                0x0000000000002cac       0x20 ./src/main.o
 .rodata.OscRateIn
                0x0000000000002ccc        0x4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
                0x0000000000002ccc                OscRateIn
 .rodata.pinmuxing
                0x0000000000002cd0       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .rodata.wdtOSCRate
                0x0000000000002cf8       0x40 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .rodata.handleMasterXferState
                0x0000000000002d38      0x164 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .rodata.handleSlaveXferState
                0x0000000000002e9c      0x1a4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .rodata.__ctype
                0x0000000000003040      0x180 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
                0x0000000000003040                __ctype
                0x00000000000031c0                . = ALIGN (0x4)

.glue_7         0x00000000000031c0        0x0
 .glue_7        0x0000000000000000        0x0 linker stubs

.glue_7t        0x00000000000031c0        0x0
 .glue_7t       0x0000000000000000        0x0 linker stubs

.vfp11_veneer   0x00000000000031c0        0x0
 .vfp11_veneer  0x0000000000000000        0x0 linker stubs

.v4_bx          0x00000000000031c0        0x0
 .v4_bx         0x0000000000000000        0x0 linker stubs

.iplt           0x00000000000031c0        0x0
 .iplt          0x0000000000000000        0x0 ./src/Support/Support/Menu.o

.rel.dyn        0x00000000000031c0        0x0
 .rel.iplt      0x0000000000000000        0x0 ./src/Support/Support/Menu.o

.ARM.extab
 *(.ARM.extab* .gnu.linkonce.armextab.*)
                0x00000000000031c0                __exidx_start = .

.ARM.exidx
 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
                0x00000000000031c0                __exidx_end = .
                0x00000000000031c0                _etext = .

.uninit_RESERVED
                0x0000000010000000        0x0
 *(.bss.$RESERVED*)
                0x0000000010000000                . = ALIGN (0x4)
                0x0000000010000000                _end_uninit_RESERVED = .

.data           0x0000000010000000       0x24 load address 0x00000000000031c0
 FILL mask 0xff
                0x0000000010000000                _data = .
 *(vtable)
 *(.ramfunc*)
 *(.data*)
 .data.uxCriticalNesting
                0x0000000010000000        0x4 ./src/Support/FreeRtos/port.o
 .data.xNextTaskUnblockTime
                0x0000000010000004        0x4 ./src/Support/FreeRtos/tasks.o
 .data.i2c      0x0000000010000008       0x1c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                0x0000000010000024                . = ALIGN (0x4)
                0x0000000010000024                _edata = .

.igot.plt       0x0000000010000024        0x0 load address 0x00000000000031e4
 .igot.plt      0x0000000000000000        0x0 ./src/Support/Support/Menu.o

.bss            0x0000000010000024      0xe28 load address 0x00000000000031e4
                0x0000000010000024                _bss = .
 *(.bss*)
 .bss.rxring    0x0000000010000024       0x14 ./src/Support/Support/Serial.o
 .bss.txring    0x0000000010000038       0x14 ./src/Support/Support/Serial.o
 .bss.rxbuff    0x000000001000004c       0x20 ./src/Support/Support/Serial.o
 .bss.mode_poll
                0x000000001000006c        0x4 ./src/Support/Support/i2c.o
 .bss.MMA8451Address
                0x0000000010000070        0x4 ./src/Support/Support/mma8451.o
 .bss.xNextFreeByte
                0x0000000010000074        0x4 ./src/Support/FreeRtos/heap_1.o
 .bss.pucAlignedHeap.6188
                0x0000000010000078        0x4 ./src/Support/FreeRtos/heap_1.o
 .bss.ucHeap    0x000000001000007c      0x600 ./src/Support/FreeRtos/heap_1.o
 .bss.uxMissedTicks
                0x000000001000067c        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.xNumOfOverflows
                0x0000000010000680        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.pxDelayedTaskList
                0x0000000010000684        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.xSchedulerRunning
                0x0000000010000688        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.uxTasksDeleted
                0x000000001000068c        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.xTasksWaitingTermination
                0x0000000010000690       0x14 ./src/Support/FreeRtos/tasks.o
 .bss.uxTopReadyPriority
                0x00000000100006a4        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.pxReadyTasksLists
                0x00000000100006a8       0xa0 ./src/Support/FreeRtos/tasks.o
 .bss.uxSchedulerSuspended
                0x0000000010000748        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.uxCurrentNumberOfTasks
                0x000000001000074c        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.pxCurrentTCB
                0x0000000010000750        0x4 ./src/Support/FreeRtos/tasks.o
                0x0000000010000750                pxCurrentTCB
 .bss.xPendingReadyList
                0x0000000010000754       0x14 ./src/Support/FreeRtos/tasks.o
 .bss.xTickCount
                0x0000000010000768        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.pxOverflowDelayedTaskList
                0x000000001000076c        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.uxTaskNumber
                0x0000000010000770        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.xDelayedTaskList1
                0x0000000010000774       0x14 ./src/Support/FreeRtos/tasks.o
 .bss.xDelayedTaskList2
                0x0000000010000788       0x14 ./src/Support/FreeRtos/tasks.o
 .bss.xMissedYield
                0x000000001000079c        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.xSuspendedTaskList
                0x00000000100007a0       0x14 ./src/Support/FreeRtos/tasks.o
 .bss.uxTopUsedPriority
                0x00000000100007b4        0x4 ./src/Support/FreeRtos/tasks.o
 .bss.gData     0x00000000100007b8      0x640 ./src/Control.o
 .bss.sys_state
                0x0000000010000df8       0x14 ./src/main.o
 .bss.i2c_slave
                0x0000000010000e0c       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .bss.errno     0x0000000010000e34        0x4 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
                0x0000000010000e34                errno
 *(COMMON)
 COMMON         0x0000000010000e38       0x10 ./src/main.o
                0x0000000010000e38                flashControl
                0x0000000010000e3c                FlasherTask
                0x0000000010000e40                aquireControl
                0x0000000010000e44                ControlTask
 COMMON         0x0000000010000e48        0x4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
                0x0000000010000e48                SystemCoreClock
                0x0000000010000e4c                . = ALIGN (0x4)
                0x0000000010000e4c                _ebss = .
                0x0000000010000e4c                PROVIDE (end, .)

.noinit         0x0000000010000e4c        0x0 load address 0x00000000000031e4
                0x0000000010000e4c                _noinit = .
 *(.noinit*)
                0x0000000010000e4c                . = ALIGN (0x4)
                0x0000000010000e4c                _end_noinit = .
                0x0000000010000e4c                PROVIDE (_pvHeapStart, .)
                0x0000000010001000                PROVIDE (_vStackTop, (__top_RamLoc4 - 0x0))
OUTPUT(gCorder-Real.axf elf32-littlearm)

.debug_info     0x0000000000000000     0xd44b
 .debug_info    0x0000000000000000      0xfda ./src/Support/Support/Serial.o
 .debug_info    0x0000000000000fda      0xf3a ./src/Support/Support/i2c.o
 .debug_info    0x0000000000001f14      0x384 ./src/Support/Support/mma8451.o
 .debug_info    0x0000000000002298      0x214 ./src/Support/Support/parser.o
 .debug_info    0x00000000000024ac      0x1c4 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_info    0x0000000000002670      0x1c9 ./src/Support/FreeRtos/heap_1.o
 .debug_info    0x0000000000002839      0x2b5 ./src/Support/FreeRtos/list.o
 .debug_info    0x0000000000002aee      0x220 ./src/Support/FreeRtos/port.o
 .debug_info    0x0000000000002d0e     0x10fa ./src/Support/FreeRtos/queue.o
 .debug_info    0x0000000000003e08     0x1968 ./src/Support/FreeRtos/tasks.o
 .debug_info    0x0000000000005770      0xf28 ./src/Control.o
 .debug_info    0x0000000000006698      0x3e4 ./src/Flasher.o
 .debug_info    0x0000000000006a7c      0x23a ./src/cr_startup_lpc11xx.o
 .debug_info    0x0000000000006cb6       0x3f ./src/crp.o
 .debug_info    0x0000000000006cf5      0xb8e ./src/main.o
 .debug_info    0x0000000000007883       0xcd ./src/sysinit.o
 .debug_info    0x0000000000007950      0xa09 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_info    0x0000000000008359      0xb2f /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_info    0x0000000000008e88       0xdc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_info    0x0000000000008f64      0x8c4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_info    0x0000000000009828      0xc71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_info    0x000000000000a499     0x1332 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_info    0x000000000000b7cb      0x4b6 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_info    0x000000000000bc81      0x589 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_info    0x000000000000c20a     0x1241 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_abbrev   0x0000000000000000     0x2f4b
 .debug_abbrev  0x0000000000000000      0x3d5 ./src/Support/Support/Serial.o
 .debug_abbrev  0x00000000000003d5      0x2d4 ./src/Support/Support/i2c.o
 .debug_abbrev  0x00000000000006a9      0x16c ./src/Support/Support/mma8451.o
 .debug_abbrev  0x0000000000000815      0x11b ./src/Support/Support/parser.o
 .debug_abbrev  0x0000000000000930      0x12e ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_abbrev  0x0000000000000a5e      0x163 ./src/Support/FreeRtos/heap_1.o
 .debug_abbrev  0x0000000000000bc1       0xf9 ./src/Support/FreeRtos/list.o
 .debug_abbrev  0x0000000000000cba      0x155 ./src/Support/FreeRtos/port.o
 .debug_abbrev  0x0000000000000e0f      0x264 ./src/Support/FreeRtos/queue.o
 .debug_abbrev  0x0000000000001073      0x287 ./src/Support/FreeRtos/tasks.o
 .debug_abbrev  0x00000000000012fa      0x2e0 ./src/Control.o
 .debug_abbrev  0x00000000000015da      0x1dd ./src/Flasher.o
 .debug_abbrev  0x00000000000017b7       0xe8 ./src/cr_startup_lpc11xx.o
 .debug_abbrev  0x000000000000189f       0x36 ./src/crp.o
 .debug_abbrev  0x00000000000018d5      0x2d9 ./src/main.o
 .debug_abbrev  0x0000000000001bae       0x88 ./src/sysinit.o
 .debug_abbrev  0x0000000000001c36      0x2e7 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_abbrev  0x0000000000001f1d      0x2af /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_abbrev  0x00000000000021cc       0x9b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_abbrev  0x0000000000002267      0x1fb /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_abbrev  0x0000000000002462      0x1c5 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_abbrev  0x0000000000002627      0x3f9 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_abbrev  0x0000000000002a20      0x171 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_abbrev  0x0000000000002b91       0xce /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_abbrev  0x0000000000002c5f      0x2ec /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_loc      0x0000000000000000     0x524b
 .debug_loc     0x0000000000000000      0x55c ./src/Support/Support/Serial.o
 .debug_loc     0x000000000000055c      0x31d ./src/Support/Support/i2c.o
 .debug_loc     0x0000000000000879      0x17f ./src/Support/Support/mma8451.o
 .debug_loc     0x00000000000009f8       0xcd ./src/Support/Support/parser.o
 .debug_loc     0x0000000000000ac5       0x2c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_loc     0x0000000000000af1       0x5f ./src/Support/FreeRtos/heap_1.o
 .debug_loc     0x0000000000000b50       0x5a ./src/Support/FreeRtos/list.o
 .debug_loc     0x0000000000000baa       0x5d ./src/Support/FreeRtos/port.o
 .debug_loc     0x0000000000000c07      0xaef ./src/Support/FreeRtos/queue.o
 .debug_loc     0x00000000000016f6      0xc84 ./src/Support/FreeRtos/tasks.o
 .debug_loc     0x000000000000237a      0x643 ./src/Control.o
 .debug_loc     0x00000000000029bd       0xf1 ./src/Flasher.o
 .debug_loc     0x0000000000002aae      0x1cc ./src/cr_startup_lpc11xx.o
 .debug_loc     0x0000000000002c7a       0x2a ./src/main.o
 .debug_loc     0x0000000000002ca4      0x168 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_loc     0x0000000000002e0c       0x85 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_loc     0x0000000000002e91      0x1b4 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_loc     0x0000000000003045      0x76b /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_loc     0x00000000000037b0      0xb08 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_loc     0x00000000000042b8      0x47d /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_loc     0x0000000000004735       0xd0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_loc     0x0000000000004805      0xa46 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_aranges  0x0000000000000000      0x940
 .debug_aranges
                0x0000000000000000       0x70 ./src/Support/Support/Serial.o
 .debug_aranges
                0x0000000000000070       0x68 ./src/Support/Support/i2c.o
 .debug_aranges
                0x00000000000000d8       0x38 ./src/Support/Support/mma8451.o
 .debug_aranges
                0x0000000000000110       0x28 ./src/Support/Support/parser.o
 .debug_aranges
                0x0000000000000138       0x40 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_aranges
                0x0000000000000178       0x38 ./src/Support/FreeRtos/heap_1.o
 .debug_aranges
                0x00000000000001b0       0x40 ./src/Support/FreeRtos/list.o
 .debug_aranges
                0x00000000000001f0       0x70 ./src/Support/FreeRtos/port.o
 .debug_aranges
                0x0000000000000260       0xe0 ./src/Support/FreeRtos/queue.o
 .debug_aranges
                0x0000000000000340      0x158 ./src/Support/FreeRtos/tasks.o
 .debug_aranges
                0x0000000000000498       0x68 ./src/Control.o
 .debug_aranges
                0x0000000000000500       0x20 ./src/Flasher.o
 .debug_aranges
                0x0000000000000520       0x60 ./src/cr_startup_lpc11xx.o
 .debug_aranges
                0x0000000000000580       0x18 ./src/crp.o
 .debug_aranges
                0x0000000000000598       0x30 ./src/main.o
 .debug_aranges
                0x00000000000005c8       0x20 ./src/sysinit.o
 .debug_aranges
                0x00000000000005e8       0x70 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_aranges
                0x0000000000000658       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_aranges
                0x0000000000000688       0x20 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_aranges
                0x00000000000006a8       0x78 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_aranges
                0x0000000000000720       0x50 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_aranges
                0x0000000000000770       0xd8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_aranges
                0x0000000000000848       0x40 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_aranges
                0x0000000000000888       0x38 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_aranges
                0x00000000000008c0       0x80 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_ranges   0x0000000000000000      0x820
 .debug_ranges  0x0000000000000000       0x60 ./src/Support/Support/Serial.o
 .debug_ranges  0x0000000000000060       0x58 ./src/Support/Support/i2c.o
 .debug_ranges  0x00000000000000b8       0x28 ./src/Support/Support/mma8451.o
 .debug_ranges  0x00000000000000e0       0x18 ./src/Support/Support/parser.o
 .debug_ranges  0x00000000000000f8       0x30 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_ranges  0x0000000000000128       0x28 ./src/Support/FreeRtos/heap_1.o
 .debug_ranges  0x0000000000000150       0x30 ./src/Support/FreeRtos/list.o
 .debug_ranges  0x0000000000000180       0x60 ./src/Support/FreeRtos/port.o
 .debug_ranges  0x00000000000001e0       0xd0 ./src/Support/FreeRtos/queue.o
 .debug_ranges  0x00000000000002b0      0x160 ./src/Support/FreeRtos/tasks.o
 .debug_ranges  0x0000000000000410       0x58 ./src/Control.o
 .debug_ranges  0x0000000000000468       0x28 ./src/Flasher.o
 .debug_ranges  0x0000000000000490       0x50 ./src/cr_startup_lpc11xx.o
 .debug_ranges  0x00000000000004e0       0x20 ./src/main.o
 .debug_ranges  0x0000000000000500       0x10 ./src/sysinit.o
 .debug_ranges  0x0000000000000510       0x60 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_ranges  0x0000000000000570       0x38 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_ranges  0x00000000000005a8       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_ranges  0x00000000000005b8       0x68 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_ranges  0x0000000000000620       0x40 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_ranges  0x0000000000000660       0xe0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_ranges  0x0000000000000740       0x30 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_ranges  0x0000000000000770       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_ranges  0x0000000000000798       0x88 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_macro    0x0000000000000000     0x537b
 .debug_macro   0x0000000000000000      0x209 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000209      0x5b9 ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000007c2       0x22 ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000007e4       0x74 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000858       0x10 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000868       0x1f ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000887       0x3a ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000008c1      0x241 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000b02      0x117 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000c19       0x22 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000c3b       0xb2 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000ced       0x10 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000cfd      0x137 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000e34       0x4c ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000e80       0x16 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000000e96      0x31a ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000011b0       0x2e ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000011de       0xb8 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001296       0x11 ./src/Support/Support/Serial.o
 .debug_macro   0x00000000000012a7       0x7c ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001323      0x21c ./src/Support/Support/Serial.o
 .debug_macro   0x000000000000153f      0x113 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001652       0x16 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001668       0x9a ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001702       0x20 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001722       0x10 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001732       0x46 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001778      0x121 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001899       0xb1 ./src/Support/Support/Serial.o
 .debug_macro   0x000000000000194a       0x12 ./src/Support/Support/Serial.o
 .debug_macro   0x000000000000195c       0x1f ./src/Support/Support/Serial.o
 .debug_macro   0x000000000000197b      0x1ee ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001b69       0x5e ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001bc7       0x57 ./src/Support/Support/Serial.o
 .debug_macro   0x0000000000001c1e      0x18e ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000001dac       0x7b ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000001e27       0x34 ./src/Support/Support/i2c.o
 .debug_macro   0x0000000000001e5b       0x23 ./src/Support/Support/mma8451.o
 .debug_macro   0x0000000000001e7e       0xa6 ./src/Support/Support/mma8451.o
 .debug_macro   0x0000000000001f24       0x78 ./src/Support/Support/parser.o
 .debug_macro   0x0000000000001f9c       0x7c ./src/Support/Support/parser.o
 .debug_macro   0x0000000000002018      0x1c5 ./src/Support/Support/parser.o
 .debug_macro   0x00000000000021dd       0x16 ./src/Support/Support/parser.o
 .debug_macro   0x00000000000021f3      0x202 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x00000000000023f5       0x16 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x000000000000240b       0x10 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x000000000000241b      0x11b ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000002536      0x1ee ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_macro   0x0000000000002724      0x21e ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x0000000000002942       0x28 ./src/Support/FreeRtos/heap_1.o
 .debug_macro   0x000000000000296a      0x1fd ./src/Support/FreeRtos/list.o
 .debug_macro   0x0000000000002b67      0x240 ./src/Support/FreeRtos/port.o
 .debug_macro   0x0000000000002da7      0x272 ./src/Support/FreeRtos/queue.o
 .debug_macro   0x0000000000003019       0x9c ./src/Support/FreeRtos/queue.o
 .debug_macro   0x00000000000030b5      0x292 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x0000000000003347       0x61 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x00000000000033a8       0x17 ./src/Support/FreeRtos/tasks.o
 .debug_macro   0x00000000000033bf      0x28d ./src/Control.o
 .debug_macro   0x000000000000364c      0x1ee ./src/Control.o
 .debug_macro   0x000000000000383a       0x78 ./src/Control.o
 .debug_macro   0x00000000000038b2       0x10 ./src/Control.o
 .debug_macro   0x00000000000038c2       0x4c ./src/Control.o
 .debug_macro   0x000000000000390e      0x22f ./src/Flasher.o
 .debug_macro   0x0000000000003b3d       0x22 ./src/Flasher.o
 .debug_macro   0x0000000000003b5f       0x1d ./src/cr_startup_lpc11xx.o
 .debug_macro   0x0000000000003b7c       0x1a ./src/crp.o
 .debug_macro   0x0000000000003b96       0x34 ./src/crp.o
 .debug_macro   0x0000000000003bca      0x274 ./src/main.o
 .debug_macro   0x0000000000003e3e      0x17d ./src/sysinit.o
 .debug_macro   0x0000000000003fbb      0x18a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000004145      0x81a /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x000000000000495f       0x12 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_macro   0x0000000000004971      0x18b /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_macro   0x0000000000004afc      0x148 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_macro   0x0000000000004c44      0x148 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_macro   0x0000000000004d8c      0x148 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_macro   0x0000000000004ed4      0x15a /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_macro   0x000000000000502e       0x83 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x00000000000050b1       0x10 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_macro   0x00000000000050c1      0x172 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_macro   0x0000000000005233      0x148 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_line     0x0000000000000000     0x6606
 .debug_line    0x0000000000000000      0x59b ./src/Support/Support/Serial.o
 .debug_line    0x000000000000059b      0x43c ./src/Support/Support/i2c.o
 .debug_line    0x00000000000009d7       0xc0 ./src/Support/Support/mma8451.o
 .debug_line    0x0000000000000a97      0x18b ./src/Support/Support/parser.o
 .debug_line    0x0000000000000c22      0x43a ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_line    0x000000000000105c      0x424 ./src/Support/FreeRtos/heap_1.o
 .debug_line    0x0000000000001480      0x43a ./src/Support/FreeRtos/list.o
 .debug_line    0x00000000000018ba      0x48d ./src/Support/FreeRtos/port.o
 .debug_line    0x0000000000001d47      0x7e0 ./src/Support/FreeRtos/queue.o
 .debug_line    0x0000000000002527      0xa88 ./src/Support/FreeRtos/tasks.o
 .debug_line    0x0000000000002faf      0x661 ./src/Control.o
 .debug_line    0x0000000000003610      0x468 ./src/Flasher.o
 .debug_line    0x0000000000003a78       0xa7 ./src/cr_startup_lpc11xx.o
 .debug_line    0x0000000000003b1f       0x7f ./src/crp.o
 .debug_line    0x0000000000003b9e      0x50c ./src/main.o
 .debug_line    0x00000000000040aa      0x335 ./src/sysinit.o
 .debug_line    0x00000000000043df      0x445 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_line    0x0000000000004824      0x3eb /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_line    0x0000000000004c0f      0x2c6 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_line    0x0000000000004ed5      0x3bc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_line    0x0000000000005291      0x394 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_line    0x0000000000005625      0x5cc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_line    0x0000000000005bf1      0x245 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_line    0x0000000000005e36      0x303 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_line    0x0000000000006139      0x4cd /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)

.debug_str      0x0000000000000000    0x1051f
 .debug_str     0x0000000000000000     0xa56e ./src/Support/Support/Serial.o
                                       0xa6a7 (size before relaxing)
 .debug_str     0x000000000000a56e      0x676 ./src/Support/Support/i2c.o
                                       0x8a8d (size before relaxing)
 .debug_str     0x000000000000abe4      0x331 ./src/Support/Support/mma8451.o
                                       0x26ea (size before relaxing)
 .debug_str     0x000000000000af15      0x66f ./src/Support/Support/parser.o
                                       0x313b (size before relaxing)
 .debug_str     0x000000000000b584      0x10c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
                                       0x9f89 (size before relaxing)
 .debug_str     0x000000000000b690      0x14c ./src/Support/FreeRtos/heap_1.o
                                       0xa04e (size before relaxing)
 .debug_str     0x000000000000b7dc      0x136 ./src/Support/FreeRtos/list.o
                                       0x9d06 (size before relaxing)
 .debug_str     0x000000000000b912      0x358 ./src/Support/FreeRtos/port.o
                                       0xa200 (size before relaxing)
 .debug_str     0x000000000000bc6a      0xffd ./src/Support/FreeRtos/queue.o
                                       0xb0b7 (size before relaxing)
 .debug_str     0x000000000000cc67     0x162d ./src/Support/FreeRtos/tasks.o
                                       0xb8db (size before relaxing)
 .debug_str     0x000000000000e294      0xa1f ./src/Control.o
                                       0xb911 (size before relaxing)
 .debug_str     0x000000000000ecb3       0x9d ./src/Flasher.o
                                       0xb0d1 (size before relaxing)
 .debug_str     0x000000000000ed50      0x14f ./src/cr_startup_lpc11xx.o
                                       0x2469 (size before relaxing)
 .debug_str     0x000000000000ee9f       0xe9 ./src/crp.o
                                       0x23b9 (size before relaxing)
 .debug_str     0x000000000000ef88       0xeb ./src/main.o
                                       0xbb2b (size before relaxing)
 .debug_str     0x000000000000f073       0x22 ./src/sysinit.o
                                       0x7f33 (size before relaxing)
 .debug_str     0x000000000000f095      0x178 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
                                       0x8426 (size before relaxing)
 .debug_str     0x000000000000f20d      0x4b5 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
                                       0x8900 (size before relaxing)
 .debug_str     0x000000000000f6c2       0x73 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
                                       0x7c93 (size before relaxing)
 .debug_str     0x000000000000f735      0x3bc /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
                                       0x8439 (size before relaxing)
 .debug_str     0x000000000000faf1      0x1c5 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
                                       0x8317 (size before relaxing)
 .debug_str     0x000000000000fcb6      0x416 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
                                       0x868c (size before relaxing)
 .debug_str     0x00000000000100cc      0x121 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
                                       0x3e18 (size before relaxing)
 .debug_str     0x00000000000101ed      0x175 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
                                       0x8083 (size before relaxing)
 .debug_str     0x0000000000010362      0x1bd /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
                                       0x8453 (size before relaxing)

.comment        0x0000000000000000       0x70
 .comment       0x0000000000000000       0x70 ./src/Support/Support/Serial.o
                                         0x71 (size before relaxing)
 .comment       0x0000000000000000       0x71 ./src/Support/Support/i2c.o
 .comment       0x0000000000000000       0x71 ./src/Support/Support/mma8451.o
 .comment       0x0000000000000000       0x71 ./src/Support/Support/parser.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/heap_1.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/list.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/port.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/queue.o
 .comment       0x0000000000000000       0x71 ./src/Support/FreeRtos/tasks.o
 .comment       0x0000000000000000       0x71 ./src/Control.o
 .comment       0x0000000000000000       0x71 ./src/Flasher.o
 .comment       0x0000000000000000       0x71 ./src/cr_startup_lpc11xx.o
 .comment       0x0000000000000000       0x71 ./src/crp.o
 .comment       0x0000000000000000       0x71 ./src/main.o
 .comment       0x0000000000000000       0x71 ./src/sysinit.o
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .comment       0x0000000000000000       0x71 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
 .comment       0x0000000000000000       0x71 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)

.ARM.attributes
                0x0000000000000000       0x2f
 .ARM.attributes
                0x0000000000000000       0x31 ./src/Support/Support/Serial.o
 .ARM.attributes
                0x0000000000000031       0x31 ./src/Support/Support/i2c.o
 .ARM.attributes
                0x0000000000000062       0x31 ./src/Support/Support/mma8451.o
 .ARM.attributes
                0x0000000000000093       0x31 ./src/Support/Support/parser.o
 .ARM.attributes
                0x00000000000000c4       0x31 ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .ARM.attributes
                0x00000000000000f5       0x31 ./src/Support/FreeRtos/heap_1.o
 .ARM.attributes
                0x0000000000000126       0x31 ./src/Support/FreeRtos/list.o
 .ARM.attributes
                0x0000000000000157       0x31 ./src/Support/FreeRtos/port.o
 .ARM.attributes
                0x0000000000000188       0x31 ./src/Support/FreeRtos/queue.o
 .ARM.attributes
                0x00000000000001b9       0x31 ./src/Support/FreeRtos/tasks.o
 .ARM.attributes
                0x00000000000001ea       0x31 ./src/Control.o
 .ARM.attributes
                0x000000000000021b       0x31 ./src/Flasher.o
 .ARM.attributes
                0x000000000000024c       0x31 ./src/cr_startup_lpc11xx.o
 .ARM.attributes
                0x000000000000027d       0x31 ./src/crp.o
 .ARM.attributes
                0x00000000000002ae       0x31 ./src/main.o
 .ARM.attributes
                0x00000000000002df       0x31 ./src/sysinit.o
 .ARM.attributes
                0x0000000000000310       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .ARM.attributes
                0x0000000000000341       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .ARM.attributes
                0x0000000000000372       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .ARM.attributes
                0x00000000000003a3       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .ARM.attributes
                0x00000000000003d4       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .ARM.attributes
                0x0000000000000405       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .ARM.attributes
                0x0000000000000436       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .ARM.attributes
                0x0000000000000467       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .ARM.attributes
                0x0000000000000498       0x31 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
 .ARM.attributes
                0x00000000000004c9       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcpy.o)
 .ARM.attributes
                0x00000000000004fa       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memset.o)
 .ARM.attributes
                0x000000000000052b       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(__weak__main.o)
 .ARM.attributes
                0x000000000000055c       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(ctype.o)
 .ARM.attributes
                0x000000000000058d       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(memcmp.o)
 .ARM.attributes
                0x00000000000005be       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(scanf.o)
 .ARM.attributes
                0x00000000000005ef       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strlen.o)
 .ARM.attributes
                0x0000000000000620       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(strncpy.o)
 .ARM.attributes
                0x0000000000000651       0x31 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/../../../../arm-none-eabi/lib/armv6-m/libcr_c.a(errno.o)
 .ARM.attributes
                0x0000000000000682       0x21 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_32.o)
 .ARM.attributes
                0x00000000000006a3       0x21 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(division_idiv0.o)
 .ARM.attributes
                0x00000000000006c4       0x21 /Applications/lpcxpresso_7.2.0_153/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/4.8.3/armv6-m/libcr_eabihelpers.a(memcpy.o)

.debug_frame    0x0000000000000000     0x15f8
 .debug_frame   0x0000000000000000      0x140 ./src/Support/Support/Serial.o
 .debug_frame   0x0000000000000140       0xfc ./src/Support/Support/i2c.o
 .debug_frame   0x000000000000023c       0x78 ./src/Support/Support/mma8451.o
 .debug_frame   0x00000000000002b4       0x44 ./src/Support/Support/parser.o
 .debug_frame   0x00000000000002f8       0x6c ./src/Support/FreeRtos/FreeRTOSCommonHooks.o
 .debug_frame   0x0000000000000364       0x5c ./src/Support/FreeRtos/heap_1.o
 .debug_frame   0x00000000000003c0       0x68 ./src/Support/FreeRtos/list.o
 .debug_frame   0x0000000000000428       0xe0 ./src/Support/FreeRtos/port.o
 .debug_frame   0x0000000000000508      0x278 ./src/Support/FreeRtos/queue.o
 .debug_frame   0x0000000000000780      0x404 ./src/Support/FreeRtos/tasks.o
 .debug_frame   0x0000000000000b84      0x13c ./src/Control.o
 .debug_frame   0x0000000000000cc0       0x38 ./src/Flasher.o
 .debug_frame   0x0000000000000cf8       0xb4 ./src/cr_startup_lpc11xx.o
 .debug_frame   0x0000000000000dac       0x54 ./src/main.o
 .debug_frame   0x0000000000000e00       0x28 ./src/sysinit.o
 .debug_frame   0x0000000000000e28       0xe8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board.o)
 .debug_frame   0x0000000000000f10       0x5c /Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug/libnxp_lpcxpresso_11c24_board_lib.a(board_sysinit.o)
 .debug_frame   0x0000000000000f6c       0x28 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(chip_11xx.o)
 .debug_frame   0x0000000000000f94       0xf8 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(clock_11xx.o)
 .debug_frame   0x000000000000108c       0xa0 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(gpio_11xx_2.o)
 .debug_frame   0x000000000000112c      0x250 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(i2c_11xx.o)
 .debug_frame   0x000000000000137c       0x98 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(ring_buffer.o)
 .debug_frame   0x0000000000001414       0x58 /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(sysctl_11xx.o)
 .debug_frame   0x000000000000146c      0x18c /Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug/liblpc_chip_11cxx_lib.a(uart_11xx.o)
Added gCorder/Debug/gCorder-Real_Debug.ld.
































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 * GENERATED FILE - DO NOT EDIT
 * (c) Code Red Technologies Ltd, 2008-13
 * (c) NXP Semiconductors 2013-2015
 * Generated linker script file for LPC1114FN/102
 * Created from generic_c.ld (LPCXpresso v7.2 (0 [Build 153] [2014-05-19] ))
 * By LPCXpresso v7.2.0 [Build 153] [2014-05-19]  on Mon Dec 07 15:01:28 EST 2015
 */


INCLUDE "gCorder-Real_Debug_lib.ld"
INCLUDE "gCorder-Real_Debug_mem.ld"

ENTRY(ResetISR)

SECTIONS
{

    /* MAIN TEXT SECTION */    
    .text : ALIGN(4)
    {
        FILL(0xff)
        __vectors_start__ = ABSOLUTE(.) ;
        KEEP(*(.isr_vector))
        
        /* Global Section Table */
        . = ALIGN(4) ;
        __section_table_start = .;
        __data_section_table = .;
        LONG(LOADADDR(.data));
        LONG(    ADDR(.data));
        LONG(  SIZEOF(.data));
        __data_section_table_end = .;
        __bss_section_table = .;
        LONG(    ADDR(.bss));
        LONG(  SIZEOF(.bss));
        __bss_section_table_end = .;
        __section_table_end = . ;
        /* End of Global Section Table */
        

        *(.after_vectors*)
        
        /* Code Read Protect data */
        . = 0x000002FC ;
        PROVIDE(__CRP_WORD_START__ = .) ;
        KEEP(*(.crp))
        PROVIDE(__CRP_WORD_END__ = .) ;
        ASSERT(!(__CRP_WORD_START__ == __CRP_WORD_END__), "Linker CRP Enabled, but no CRP_WORD provided within application");
        /* End of Code Read Protect */
        
    } >MFlash32
    
    .text : ALIGN(4)    
    {
         *(.text*)
        *(.rodata .rodata.* .constdata .constdata.*)
        . = ALIGN(4);
        
    } > MFlash32

    /*
     * for exception handling/unwind - some Newlib functions (in common
     * with C++ and STDC++) use this. 
     */
    .ARM.extab : ALIGN(4)
    {
    	*(.ARM.extab* .gnu.linkonce.armextab.*)
    } > MFlash32
    __exidx_start = .;
    
    .ARM.exidx : ALIGN(4)
    {
    	*(.ARM.exidx* .gnu.linkonce.armexidx.*)
    } > MFlash32
    __exidx_end = .;
    
    _etext = .;
        
    
    /* MAIN DATA SECTION */
    

    .uninit_RESERVED : ALIGN(4)
    {
        KEEP(*(.bss.$RESERVED*))
        . = ALIGN(4) ;
        _end_uninit_RESERVED = .;
    } > RamLoc4

	
	/* Main DATA section (RamLoc4) */
	.data : ALIGN(4)
	{
	   FILL(0xff)
	   _data = . ;
	   *(vtable)
	   *(.ramfunc*)
	   *(.data*)
	   . = ALIGN(4) ;
	   _edata = . ;
	} > RamLoc4 AT>MFlash32


    /* MAIN BSS SECTION */
    .bss : ALIGN(4)
    {
        _bss = .;
        *(.bss*)
        *(COMMON)
        . = ALIGN(4) ;
        _ebss = .;
        PROVIDE(end = .);
    } > RamLoc4
        
    
    /* DEFAULT NOINIT SECTION */
    .noinit (NOLOAD): ALIGN(4)
    {
        _noinit = .;
        *(.noinit*) 
         . = ALIGN(4) ;
        _end_noinit = .;
    } > RamLoc4
    
    PROVIDE(_pvHeapStart = .);
    PROVIDE(_vStackTop = __top_RamLoc4 - 0);
}
Added gCorder/Debug/gCorder-Real_Debug_lib.ld.




























>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * GENERATED FILE - DO NOT EDIT
 * (c) Code Red Technologies Ltd, 2008-13
 * (c) NXP Semiconductors 2013-2015
 * Generated linker script file for LPC1114FN/102
 * Created from LibIncTemplate.ld (LPCXpresso v7.2 (0 [Build 153] [2014-05-19] ))
 * By LPCXpresso v7.2.0 [Build 153] [2014-05-19]  on Mon Dec 07 15:01:28 EST 2015
 */


 GROUP(
 libcr_c.a
 libcr_eabihelpers.a
 )
Added gCorder/Debug/gCorder-Real_Debug_mem.ld.














































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * GENERATED FILE - DO NOT EDIT
 * (c) Code Red Technologies Ltd, 2008-2015
 * (c) NXP Semiconductors 2013-2015
 * Linker script memory definitions
 * Created from LinkMemoryTemplate
 * By LPCXpresso v7.2.0 [Build 153] [2014-05-19]  on Mon Dec 07 15:01:28 EST 2015)
*/

MEMORY
{
  /* Define each memory region */
  MFlash32 (rx) : ORIGIN = 0x0, LENGTH = 0x8000 /* 32K bytes */
  RamLoc4 (rwx) : ORIGIN = 0x10000000, LENGTH = 0x1000 /* 4K bytes */


}
  /* Define a symbol for the top of each memory region */
  __top_MFlash32 = 0x0 + 0x8000;
  __top_RamLoc4 = 0x10000000 + 0x1000;



Added gCorder/Debug/makefile.








































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

-include ../makefile.init

RM := rm -rf

# All of the sources participating in the build are defined here
-include sources.mk
-include src/Support/Support/subdir.mk
-include src/Support/FreeRtos/subdir.mk
-include src/subdir.mk
-include subdir.mk
-include objects.mk

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
endif

-include ../makefile.defs

# Add inputs and outputs from these tool invocations to the build variables 

# All Target
all: gCorder-Real.axf

# Tool invocations
gCorder-Real.axf: $(OBJS) $(USER_OBJS)
	@echo 'Building target: $@'
	@echo 'Invoking: MCU Linker'
	arm-none-eabi-gcc -nostdlib -L"/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/Debug" -L"/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/Debug" -Xlinker -Map="gCorder-Real.map" -Xlinker --gc-sections -mcpu=cortex-m0 -mthumb -T "gCorder-Real_Debug.ld" -o "gCorder-Real.axf" $(OBJS) $(USER_OBJS) $(LIBS)
	@echo 'Finished building target: $@'
	@echo ' '
	$(MAKE) --no-print-directory post-build

# Other Targets
clean:
	-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) gCorder-Real.axf
	-@echo ' '

post-build:
	-@echo 'Performing post-build steps'
	-arm-none-eabi-size "gCorder-Real.axf"; # arm-none-eabi-objcopy -v -O binary "gCorder-Real.axf" "gCorder-Real.bin" ; # checksum -p LPC1114FN_102 -d "gCorder-Real.bin";
	-@echo ' '

.PHONY: all clean dependents
.SECONDARY: post-build

-include ../makefile.targets
Added gCorder/Debug/objects.mk.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

USER_OBJS :=

LIBS := -lnxp_lpcxpresso_11c24_board_lib -llpc_chip_11cxx_lib

Added gCorder/Debug/sources.mk.








































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

O_SRCS := 
C_SRCS := 
S_SRCS := 
S_UPPER_SRCS := 
OBJ_SRCS := 
ASM_SRCS := 
OBJS := 
C_DEPS := 
EXECUTABLES := 

# Every subdirectory with source files must be described here
SUBDIRS := \
src \
src/Support/Support \
src/Support/FreeRtos \

Added gCorder/Debug/src/Support/FreeRtos/subdir.mk.


























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

# Add inputs and outputs from these tool invocations to the build variables 
C_SRCS += \
../src/Support/FreeRtos/FreeRTOSCommonHooks.c \
../src/Support/FreeRtos/croutine.c \
../src/Support/FreeRtos/heap_1.c \
../src/Support/FreeRtos/list.c \
../src/Support/FreeRtos/port.c \
../src/Support/FreeRtos/queue.c \
../src/Support/FreeRtos/tasks.c \
../src/Support/FreeRtos/timers.c 

OBJS += \
./src/Support/FreeRtos/FreeRTOSCommonHooks.o \
./src/Support/FreeRtos/croutine.o \
./src/Support/FreeRtos/heap_1.o \
./src/Support/FreeRtos/list.o \
./src/Support/FreeRtos/port.o \
./src/Support/FreeRtos/queue.o \
./src/Support/FreeRtos/tasks.o \
./src/Support/FreeRtos/timers.o 

C_DEPS += \
./src/Support/FreeRtos/FreeRTOSCommonHooks.d \
./src/Support/FreeRtos/croutine.d \
./src/Support/FreeRtos/heap_1.d \
./src/Support/FreeRtos/list.d \
./src/Support/FreeRtos/port.d \
./src/Support/FreeRtos/queue.d \
./src/Support/FreeRtos/tasks.d \
./src/Support/FreeRtos/timers.d 


# Each subdirectory must supply rules for building sources it contributes
src/Support/FreeRtos/%.o: ../src/Support/FreeRtos/%.c
	@echo 'Building file: $<'
	@echo 'Invoking: MCU C Compiler'
	arm-none-eabi-gcc -D__REDLIB__ -DDEBUG -D__CODE_RED -DCORE_M0 -D__USE_LPCOPEN -D__LPC11XX__ -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/Support -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/FreeRtos -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/inc" -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/inc" -Og -g3 -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -mcpu=cortex-m0 -mthumb -specs=redlib.specs -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '


Added gCorder/Debug/src/Support/Support/subdir.mk.






























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

# Add inputs and outputs from these tool invocations to the build variables 
C_SRCS += \
../src/Support/Support/Menu.c \
../src/Support/Support/Serial.c \
../src/Support/Support/i2c.c \
../src/Support/Support/mma8451.c \
../src/Support/Support/parser.c 

S_SRCS += \
../src/Support/Support/fastTimer.s 

OBJS += \
./src/Support/Support/Menu.o \
./src/Support/Support/Serial.o \
./src/Support/Support/fastTimer.o \
./src/Support/Support/i2c.o \
./src/Support/Support/mma8451.o \
./src/Support/Support/parser.o 

C_DEPS += \
./src/Support/Support/Menu.d \
./src/Support/Support/Serial.d \
./src/Support/Support/i2c.d \
./src/Support/Support/mma8451.d \
./src/Support/Support/parser.d 


# Each subdirectory must supply rules for building sources it contributes
src/Support/Support/%.o: ../src/Support/Support/%.c
	@echo 'Building file: $<'
	@echo 'Invoking: MCU C Compiler'
	arm-none-eabi-gcc -D__REDLIB__ -DDEBUG -D__CODE_RED -DCORE_M0 -D__USE_LPCOPEN -D__LPC11XX__ -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/Support -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/FreeRtos -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/inc" -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/inc" -Og -g3 -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -mcpu=cortex-m0 -mthumb -specs=redlib.specs -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '

src/Support/Support/%.o: ../src/Support/Support/%.s
	@echo 'Building file: $<'
	@echo 'Invoking: MCU Assembler'
	arm-none-eabi-gcc -c -x assembler-with-cpp -D__REDLIB__ -DDEBUG -D__CODE_RED -g3 -mcpu=cortex-m0 -mthumb -specs=redlib.specs -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '


Added gCorder/Debug/src/subdir.mk.














































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

# Add inputs and outputs from these tool invocations to the build variables 
C_SRCS += \
../src/Control.c \
../src/Flasher.c \
../src/cr_startup_lpc11xx.c \
../src/crp.c \
../src/main.c \
../src/sysinit.c 

OBJS += \
./src/Control.o \
./src/Flasher.o \
./src/cr_startup_lpc11xx.o \
./src/crp.o \
./src/main.o \
./src/sysinit.o 

C_DEPS += \
./src/Control.d \
./src/Flasher.d \
./src/cr_startup_lpc11xx.d \
./src/crp.d \
./src/main.d \
./src/sysinit.d 


# Each subdirectory must supply rules for building sources it contributes
src/%.o: ../src/%.c
	@echo 'Building file: $<'
	@echo 'Invoking: MCU C Compiler'
	arm-none-eabi-gcc -D__REDLIB__ -DDEBUG -D__CODE_RED -DCORE_M0 -D__USE_LPCOPEN -D__LPC11XX__ -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/Support -I/Users/jschimpf/Public/MMA8451/gCorder/src/Support/FreeRtos -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/nxp_lpcxpresso_11c24_board_lib/inc" -I"/Users/jim/Documents/LPCXpresso_7.2.0/W2/lpc_chip_11cxx_lib/inc" -Og -g3 -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -mcpu=cortex-m0 -mthumb -specs=redlib.specs -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '


Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/CoreFoundation-34X4ZAE18X8S5.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/Dispatch-1PNQ00KLMVQZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/Dispatch-1PNQ00KLMVQZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/IOKit-23WI32E9E77QS.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/IOKit-23WI32E9E77QS.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/libkern-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/libkern-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/modules.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/os-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/1IHKSW6LNRM8V/os-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/AppKit-CYBH2DA1U7VZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/AppKit-CYBH2DA1U7VZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ApplicationServices-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ApplicationServices-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CFNetwork-12MVM5WBHJKOT.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CFNetwork-12MVM5WBHJKOT.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Cocoa-37FXHGRPUX15H.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Cocoa-37FXHGRPUX15H.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreData-2AP0M2ZDNSYW8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreData-2AP0M2ZDNSYW8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreFoundation-34X4ZAE18X8S5.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreGraphics-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreGraphics-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreImage-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreImage-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreServices-1NJBZWZ1ZASX8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreServices-1NJBZWZ1ZASX8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreText-Q4NFN3NEDLQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreText-Q4NFN3NEDLQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreVideo-3RH3TLCBZFM7K.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/CoreVideo-3RH3TLCBZFM7K.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/DiskArbitration-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/DiskArbitration-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Dispatch-1PNQ00KLMVQZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Dispatch-1PNQ00KLMVQZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Foundation-3M4TH6X8B5VB4.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Foundation-3M4TH6X8B5VB4.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/IOKit-23WI32E9E77QS.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/IOKit-23WI32E9E77QS.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/IOSurface-2SG9XTS8Q7D3C.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/IOSurface-2SG9XTS8Q7D3C.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ImageIO-2IWCWGPCA564E.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ImageIO-2IWCWGPCA564E.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/MachO-1GRE3NT183VOG.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/MachO-1GRE3NT183VOG.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Metal-IOL59ZEP5YSC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Metal-IOL59ZEP5YSC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ObjectiveC-5VJ5A25R4FYQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/ObjectiveC-5VJ5A25R4FYQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/OpenGL-3QOH25FW5SEXC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/OpenGL-3QOH25FW5SEXC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/QuartzCore-1KA0Q5A23U8PR.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/QuartzCore-1KA0Q5A23U8PR.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Security-2DAY8FVCG1T52.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/Security-2DAY8FVCG1T52.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/XPC-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/XPC-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/_Builtin_intrinsics-37KDVV50E2DA3.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/_Builtin_intrinsics-37KDVV50E2DA3.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/libkern-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/libkern-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/modules.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/os-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/2SXEO5TZHRCDU/os-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/CoreFoundation-34X4ZAE18X8S5.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/Dispatch-1PNQ00KLMVQZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/Dispatch-1PNQ00KLMVQZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/IOKit-23WI32E9E77QS.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/IOKit-23WI32E9E77QS.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/libkern-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/libkern-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/modules.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/os-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/31QNPIY8O3AO2/os-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/AppKit-CYBH2DA1U7VZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/AppKit-CYBH2DA1U7VZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ApplicationServices-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ApplicationServices-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CFNetwork-12MVM5WBHJKOT.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CFNetwork-12MVM5WBHJKOT.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Cocoa-37FXHGRPUX15H.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Cocoa-37FXHGRPUX15H.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreData-2AP0M2ZDNSYW8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreData-2AP0M2ZDNSYW8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreFoundation-34X4ZAE18X8S5.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreGraphics-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreGraphics-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreImage-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreImage-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreServices-1NJBZWZ1ZASX8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreServices-1NJBZWZ1ZASX8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreText-Q4NFN3NEDLQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreText-Q4NFN3NEDLQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreVideo-3RH3TLCBZFM7K.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/CoreVideo-3RH3TLCBZFM7K.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/DiskArbitration-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/DiskArbitration-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Dispatch-1PNQ00KLMVQZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Dispatch-1PNQ00KLMVQZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Foundation-3M4TH6X8B5VB4.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Foundation-3M4TH6X8B5VB4.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/IOKit-23WI32E9E77QS.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/IOKit-23WI32E9E77QS.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/IOSurface-2SG9XTS8Q7D3C.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/IOSurface-2SG9XTS8Q7D3C.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ImageIO-2IWCWGPCA564E.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ImageIO-2IWCWGPCA564E.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/MachO-1GRE3NT183VOG.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/MachO-1GRE3NT183VOG.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Metal-IOL59ZEP5YSC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Metal-IOL59ZEP5YSC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ObjectiveC-5VJ5A25R4FYQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/ObjectiveC-5VJ5A25R4FYQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/OpenGL-3QOH25FW5SEXC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/OpenGL-3QOH25FW5SEXC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/QuartzCore-1KA0Q5A23U8PR.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/QuartzCore-1KA0Q5A23U8PR.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Security-2DAY8FVCG1T52.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/Security-2DAY8FVCG1T52.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/XPC-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/XPC-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/_Builtin_intrinsics-37KDVV50E2DA3.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/_Builtin_intrinsics-37KDVV50E2DA3.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/libkern-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/libkern-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/modules.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/os-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/64RBPSBTC6K2/os-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/Cocoa-37FXHGRPUX15H.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/CoreGraphics-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/CoreServices-1NJBZWZ1ZASX8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/DiskArbitration-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/Foundation-3M4TH6X8B5VB4.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/IOSurface-2SG9XTS8Q7D3C.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/MachO-1GRE3NT183VOG.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/ObjectiveC-5VJ5A25R4FYQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/Security-2DAY8FVCG1T52.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/9GQBQ3BE32OV/XCTest-2NCTUXJWAFHPE.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/AppKit-CYBH2DA1U7VZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/AppKit-CYBH2DA1U7VZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ApplicationServices-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ApplicationServices-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CFNetwork-12MVM5WBHJKOT.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CFNetwork-12MVM5WBHJKOT.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Cocoa-37FXHGRPUX15H.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Cocoa-37FXHGRPUX15H.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreData-2AP0M2ZDNSYW8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreData-2AP0M2ZDNSYW8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreFoundation-34X4ZAE18X8S5.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreFoundation-34X4ZAE18X8S5.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreGraphics-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreGraphics-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreImage-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreImage-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreServices-1NJBZWZ1ZASX8.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreServices-1NJBZWZ1ZASX8.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreText-Q4NFN3NEDLQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreText-Q4NFN3NEDLQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreVideo-3RH3TLCBZFM7K.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/CoreVideo-3RH3TLCBZFM7K.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Darwin-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Darwin-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/DiskArbitration-1LQ3KZFRLU291.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/DiskArbitration-1LQ3KZFRLU291.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Dispatch-1PNQ00KLMVQZ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Dispatch-1PNQ00KLMVQZ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Foundation-3M4TH6X8B5VB4.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Foundation-3M4TH6X8B5VB4.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/IOKit-23WI32E9E77QS.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/IOKit-23WI32E9E77QS.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/IOSurface-2SG9XTS8Q7D3C.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/IOSurface-2SG9XTS8Q7D3C.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ImageIO-2IWCWGPCA564E.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ImageIO-2IWCWGPCA564E.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/MachO-1GRE3NT183VOG.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/MachO-1GRE3NT183VOG.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Metal-IOL59ZEP5YSC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Metal-IOL59ZEP5YSC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ObjectiveC-5VJ5A25R4FYQ.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/ObjectiveC-5VJ5A25R4FYQ.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/OpenGL-3QOH25FW5SEXC.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/OpenGL-3QOH25FW5SEXC.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/QuartzCore-1KA0Q5A23U8PR.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/QuartzCore-1KA0Q5A23U8PR.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Security-2DAY8FVCG1T52.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/Security-2DAY8FVCG1T52.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/XCTest-2NCTUXJWAFHPE.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/XCTest-2NCTUXJWAFHPE.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/XPC-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/XPC-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/_Builtin_intrinsics-37KDVV50E2DA3.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/_Builtin_intrinsics-37KDVV50E2DA3.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/libkern-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/libkern-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/modules.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/os-1OMCG9SCO9Y78.pcm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/ModuleCache/OJ1KJK7DWN0F/os-1OMCG9SCO9Y78.pcm.timestamp.


>
1
Timestamp file
Added gReceiver/gReceiver/DerivedData/ModuleCache/Session.modulevalidation.


>
1
Module build session file for module cache at /Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/DerivedData/ModuleCache
Added gReceiver/gReceiver/DerivedData/ModuleCache/modules.timestamp.
Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb-shm.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb-wal.
Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-cmp.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-dir.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-file.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-moduleurl.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-res.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Index/Release/macosx10.11-x86_64/gReceiver.xcindex/db.xcindexdb.strings-sym.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Build/95589500-B305-4CB8-B9A0-E0C134251B0E.xcactivitylog.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Build/Cache.db.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Debug/Cache.db.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Debug/DA4615B0-1FE1-47BB-833F-72F8677F3C16.xcactivitylog.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Issues/7350EECF-3AF4-4402-8665-648EE28410A5.xcactivitylog.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Issues/AA5E5E53-D3FE-4FA0-8546-1E29819F9144.xcactivitylog.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/Logs/Issues/Cache.db.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/TextIndex/text-filter.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/TextIndex/text-find.idx.

cannot compute difference between binary files

Added gReceiver/gReceiver/DerivedData/gReceiver/info.plist.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>WorkspacePath</key>
	<string>/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/gReceiver.xcodeproj</string>
</dict>
</plist>
Added gReceiver/gReceiver/DerivedData/gReceiver/scm.plist.




















>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>SuppressMissingCheckoutsAlert</key>
	<true/>
	<key>Version</key>
	<integer>5</integer>
</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiver.app.dSYM/Contents/Info.plist.








































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>CFBundleDevelopmentRegion</key>
		<string>English</string>
		<key>CFBundleIdentifier</key>
		<string>com.apple.xcode.dsym.PP.gReceiver</string>
		<key>CFBundleInfoDictionaryVersion</key>
		<string>6.0</string>
		<key>CFBundlePackageType</key>
		<string>dSYM</string>
		<key>CFBundleSignature</key>
		<string>????</string>
		<key>CFBundleShortVersionString</key>
		<string>1.0</string>
		<key>CFBundleVersion</key>
		<string>1</string>
	</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiver.app.dSYM/Contents/Resources/DWARF/gReceiver.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Info.plist.








































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>BuildMachineOSBuild</key>
	<string>14F1509</string>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>gReceiver</string>
	<key>CFBundleIdentifier</key>
	<string>PP.gReceiver</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>gReceiver</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleSupportedPlatforms</key>
	<array>
		<string>MacOSX</string>
	</array>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>DTCompiler</key>
	<string>com.apple.compilers.llvm.clang.1_0</string>
	<key>DTPlatformBuild</key>
	<string>7C68</string>
	<key>DTPlatformVersion</key>
	<string>GM</string>
	<key>DTSDKBuild</key>
	<string>15C43</string>
	<key>DTSDKName</key>
	<string>macosx10.11</string>
	<key>DTXcode</key>
	<string>0720</string>
	<key>DTXcodeBuild</key>
	<string>7C68</string>
	<key>LSMinimumSystemVersion</key>
	<string>10.10</string>
	<key>NSHumanReadableCopyright</key>
	<string>Copyright © 2014 Pandora Products. All rights reserved.</string>
	<key>NSMainNibFile</key>
	<string>MainMenu</string>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>
</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/MacOS/gReceiver.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/PkgInfo.


>
1
APPL????
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Resources/Base.lproj/MainMenu.nib.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Resources/csvprep.awk.






































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Convert to CSV

BEGIN {
		range = 2	# Set defaults
		factor = 4096

		# Output header
		print("Time,Xg,Yg,Zg");
	}
	
/^Range/ {
			range = $2 + 0
			if( range == 2 )
			{
				factor = 4096 # Counts/g
			}
			else
			{
				if( range == 4 )
				{
					factor = 2048 # Counts/g
				}
				else
				{
					if( range = 8 )
						factor = 1024 # Counts/g
				}
			}
		}

/^-- END RUN --/ {
					# Finished with the file

					exit(0)
				}
		
{
	# Get the TIME X Y & Z
	n = split($0,data,",")
	# Convert time to seconds
	data[1] = data[1]/1000
	# Convert the DATA to G values
	# 1 g = <see range>
	data[2] = data[2]/factor
	data[3] = data[3]/factor
	data[4] = data[4]/factor
	
	# Put out T,x,y,x as CSV
	
	printf("%f,%f,%f,%f\n",data[1],data[2],data[3],data[4])
}
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Resources/dataplot.sh.










>
>
>
>
>
1
2
3
4
5
#!/bin/sh
# Plot data
# Syntax plotdata.sh <data file>
awk -f dataprep.awk $1 > plotdata.txt
gnuplot gplot.txt
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Resources/dataprep.awk.
































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Convert to CSV

BEGIN {
		range = 2	# Set defaults
		factor = 4096
	}
	
/^Range/ {
			range = $2 + 0
			if( range == 2 )
			{
				factor = 4096 # Counts/g
			}
			else
			{
				if( range == 4 )
				{
					factor = 2048 # Counts/g
				}
				else
				{
					if( range = 8 )
						factor = 1024 # Counts/g
				}
			}
		}

/^-- END RUN --/ {
					# Finished with the file

					exit(0)
				}
		
{
	# Get the TIME X Y & Z
	n = split($0,data,",")
	# Convert time to seconds
	data[1] = data[1]/1000
	# Convert the DATA to G values
	# 1 g = <see range>
	data[2] = data[2]/factor
	data[3] = data[3]/factor
	data[4] = data[4]/factor
	
	# Put out T,x,y,x
	
	printf("%f  %f  %f  %f\n",data[1],data[2],data[3],data[4])
}
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/Resources/gplot.txt.




















































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Set for X11 terminal and persistant windows
set term x11 persist
#
# Plot the G Recorder data
# Plot Time vs X,Y and Z g data
# Data is:	Time (sec) Xg(g's)....
#
set title 'G Recorder'  # This is the label for the entire graph
set xlabel 'Time (s)'   # This is the X Axis label
set ylabel 'Acceleration g'        # This is the Y Axis lable
set grid			    # This puts a grid on the graph
#
# These next lines do the heavy lifting and plot the data
# Note: The \' at the end of the lines, this is actually 1 very long
#       line the \' escape the end of line characters.  Don't type
#       anything after them but your RETURN
# plot  - Says plot the data from "data.txt" the file we created
#         using says use these columns of data for this line 1:2 says
#         use column 1 as X and column 2 as Y
#         with line says connect the points with a line
#         You can also say with point or with dot for different styles
#         title '<name>' gives a title to this line and puts that 
#               name and color into a legend on the graph
plot	"/tmp/plotdata.txt" 	using 1:2 title 'X g' with line,\
		"/tmp/plotdata.txt"		using 1:3 title 'Y g' with line,\
		"/tmp/plotdata.txt" 	using 1:4 title 'Z g' with line
Added gReceiver/gReceiver/build/Release/gReceiver.app/Contents/_CodeSignature/CodeResources.


























































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>files</key>
	<dict>
		<key>Resources/Base.lproj/MainMenu.nib</key>
		<dict>
			<key>hash</key>
			<data>
			cxs8MMHIsKZ73HVxUe1+PlczPt0=
			</data>
			<key>optional</key>
			<true/>
		</dict>
		<key>Resources/csvprep.awk</key>
		<data>
		lgkTR9UUYiz+u50Uw/7tlnPW14o=
		</data>
		<key>Resources/dataplot.sh</key>
		<data>
		9PJdGwzvv72pPzvuLYiQZS9yMf0=
		</data>
		<key>Resources/dataprep.awk</key>
		<data>
		4Ax0BiglQfPACpcxI40VVWQBhV8=
		</data>
		<key>Resources/gplot.txt</key>
		<data>
		e4jHpsU8nN8e8gZrw2ASisfYSto=
		</data>
	</dict>
	<key>files2</key>
	<dict>
		<key>Resources/Base.lproj/MainMenu.nib</key>
		<dict>
			<key>hash</key>
			<data>
			cxs8MMHIsKZ73HVxUe1+PlczPt0=
			</data>
			<key>optional</key>
			<true/>
		</dict>
		<key>Resources/csvprep.awk</key>
		<data>
		lgkTR9UUYiz+u50Uw/7tlnPW14o=
		</data>
		<key>Resources/dataplot.sh</key>
		<data>
		9PJdGwzvv72pPzvuLYiQZS9yMf0=
		</data>
		<key>Resources/dataprep.awk</key>
		<data>
		4Ax0BiglQfPACpcxI40VVWQBhV8=
		</data>
		<key>Resources/gplot.txt</key>
		<data>
		e4jHpsU8nN8e8gZrw2ASisfYSto=
		</data>
	</dict>
	<key>rules</key>
	<dict>
		<key>^Resources/</key>
		<true/>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^version.plist$</key>
		<true/>
	</dict>
	<key>rules2</key>
	<dict>
		<key>.*\.dSYM($|/)</key>
		<dict>
			<key>weight</key>
			<real>11</real>
		</dict>
		<key>^(.*/)?\.DS_Store$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>2000</real>
		</dict>
		<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^.*</key>
		<true/>
		<key>^Info\.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^PkgInfo$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^[^/]+$</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^embedded\.provisionprofile$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^version\.plist$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
	</dict>
</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiverTests.xctest.dSYM/Contents/Info.plist.








































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>CFBundleDevelopmentRegion</key>
		<string>English</string>
		<key>CFBundleIdentifier</key>
		<string>com.apple.xcode.dsym.PP.gReceiverTests</string>
		<key>CFBundleInfoDictionaryVersion</key>
		<string>6.0</string>
		<key>CFBundlePackageType</key>
		<string>dSYM</string>
		<key>CFBundleSignature</key>
		<string>????</string>
		<key>CFBundleShortVersionString</key>
		<string>1.0</string>
		<key>CFBundleVersion</key>
		<string>1</string>
	</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiverTests.xctest.dSYM/Contents/Resources/DWARF/gReceiverTests.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/Release/gReceiverTests.xctest/Contents/Info.plist.
























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>BuildMachineOSBuild</key>
	<string>14F1509</string>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>gReceiverTests</string>
	<key>CFBundleIdentifier</key>
	<string>PP.gReceiverTests</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>gReceiverTests</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleSupportedPlatforms</key>
	<array>
		<string>MacOSX</string>
	</array>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>DTCompiler</key>
	<string>com.apple.compilers.llvm.clang.1_0</string>
	<key>DTPlatformBuild</key>
	<string>7C68</string>
	<key>DTPlatformVersion</key>
	<string>GM</string>
	<key>DTSDKBuild</key>
	<string>15C43</string>
	<key>DTSDKName</key>
	<string>macosx10.11</string>
	<key>DTXcode</key>
	<string>0720</string>
	<key>DTXcodeBuild</key>
	<string>7C68</string>
</dict>
</plist>
Added gReceiver/gReceiver/build/Release/gReceiverTests.xctest/Contents/MacOS/gReceiverTests.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/Release/gReceiverTests.xctest/Contents/_CodeSignature/CodeResources.


















































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>files</key>
	<dict/>
	<key>files2</key>
	<dict/>
	<key>rules</key>
	<dict>
		<key>^Resources/</key>
		<true/>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^version.plist$</key>
		<true/>
	</dict>
	<key>rules2</key>
	<dict>
		<key>.*\.dSYM($|/)</key>
		<dict>
			<key>weight</key>
			<real>11</real>
		</dict>
		<key>^(.*/)?\.DS_Store$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>2000</real>
		</dict>
		<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^.*</key>
		<true/>
		<key>^Info\.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^PkgInfo$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^Resources/.*\.lproj/</key>
		<dict>
			<key>optional</key>
			<true/>
			<key>weight</key>
			<real>1000</real>
		</dict>
		<key>^Resources/.*\.lproj/locversion.plist$</key>
		<dict>
			<key>omit</key>
			<true/>
			<key>weight</key>
			<real>1100</real>
		</dict>
		<key>^[^/]+$</key>
		<dict>
			<key>nested</key>
			<true/>
			<key>weight</key>
			<real>10</real>
		</dict>
		<key>^embedded\.provisionprofile$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
		<key>^version\.plist$</key>
		<dict>
			<key>weight</key>
			<real>20</real>
		</dict>
	</dict>
</dict>
</plist>
Added gReceiver/gReceiver/build/gReceiver.build/Debug/gReceiver.build/dgph.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Debug/gReceiver.build/dgph~.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Debug/gReceiverTests.build/dgph.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Debug/gReceiverTests.build/dgph~.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/MainMenu-PartialInfo.plist.










>
>
>
>
>
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/AppDelegate.d.












>
>
>
>
>
>
1
2
3
4
5
6
dependencies: \
  /Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/gReceiver/AppDelegate.m \
  /Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/gReceiver/AppDelegate.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/OSX/bsdserial.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/tgtypes.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/gCorder/gCorderInterface.h
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/AppDelegate.dia.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/AppDelegate.o.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/bsdserial.d.








>
>
>
>
1
2
3
4
dependencies: \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/OSX/bsdserial.c \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/OSX/bsdserial.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/tgtypes.h
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/bsdserial.dia.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/bsdserial.o.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gCorderInterface.d.










>
>
>
>
>
1
2
3
4
5
dependencies: \
  /Users/jschimpf/Public/MMA8451/gReceiver/gCorder/gCorderInterface.c \
  /Users/jschimpf/Public/MMA8451/gReceiver/gCorder/gCorderInterface.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/OSX/bsdserial.h \
  /Users/jschimpf/Public/MMA8451/gReceiver/SERIAL/tgtypes.h
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gCorderInterface.dia.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gCorderInterface.o.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gReceiver.LinkFileList.








>
>
>
>
1
2
3
4
/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/main.o
/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/AppDelegate.o
/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gCorderInterface.o
/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/bsdserial.o
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/gReceiver_dependency_info.dat.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/main.d.




>
>
1
2
dependencies: \
  /Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/gReceiver/main.m
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/main.dia.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/Objects-normal/x86_64/main.o.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/assetcatalog_dependencies.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/assetcatalog_generated_info.plist.










>
>
>
>
>
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/dgph.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/dgph~.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver-all-non-framework-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver-all-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver-generated-files.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver-own-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver-project-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiver.build/gReceiver.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests.LinkFileList.


>
1
/Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests.o
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests.d.




























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
dependencies: \
  /Users/jschimpf/Public/MMA8451/gReceiver/gReceiver/gReceiverTests/gReceiverTests.m \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h \
  /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap
Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests.dia.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests.o.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/Objects-normal/x86_64/gReceiverTests_dependency_info.dat.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/dgph.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/dgph~.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests-all-non-framework-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests-all-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests-generated-files.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests-own-target-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests-project-headers.hmap.

cannot compute difference between binary files

Added gReceiver/gReceiver/build/gReceiver.build/Release/gReceiverTests.build/gReceiverTests.hmap.

cannot compute difference between binary files

Changes to gReceiver/gReceiver/gReceiver.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate.

cannot compute difference between binary files

Added gReceiver/gReceiver/gReceiver.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate-baseline.

cannot compute difference between binary files

Added gReceiver/gReceiver/gReceiver.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate-merge.

cannot compute difference between binary files

Added gReceiver/gReceiver/gReceiver.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate-original.

cannot compute difference between binary files

Deleted gReceiverS/gReceiverS-Bridging-Header.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  gReceiverS-Bridging-Header.h
//  gReceiverS
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

#ifndef gReceiverS_Bridging_Header_h
#define gReceiverS_Bridging_Header_h

#include "gCorderInterface.h"

#endif /* gReceiverS_Bridging_Header_h */
<
<
<
<
<
<
<
<
<
<
<
<
<
<




























Deleted gReceiverS/gReceiverS.xcodeproj/project.pbxproj.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		38205F4D1C2185A8003744D8 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38205F4C1C2185A8003744D8 /* AppDelegate.swift */; };
		38205F4F1C2185A8003744D8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 38205F4E1C2185A8003744D8 /* Assets.xcassets */; };
		38205F5D1C2185A8003744D8 /* gReceiverSTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38205F5C1C2185A8003744D8 /* gReceiverSTests.swift */; };
		38205F681C2185A8003744D8 /* gReceiverSUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38205F671C2185A8003744D8 /* gReceiverSUITests.swift */; };
		38205F7D1C218783003744D8 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 38205F7B1C218783003744D8 /* MainMenu.xib */; };
		38205F911C218956003744D8 /* bsdserial.c in Sources */ = {isa = PBXBuildFile; fileRef = 38205F891C218956003744D8 /* bsdserial.c */; };
		38205F981C218E17003744D8 /* gCorderInterface.c in Sources */ = {isa = PBXBuildFile; fileRef = 38205F971C218E17003744D8 /* gCorderInterface.c */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		38205F591C2185A8003744D8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 38205F411C2185A8003744D8 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 38205F481C2185A8003744D8;
			remoteInfo = gReceiverS;
		};
		38205F641C2185A8003744D8 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 38205F411C2185A8003744D8 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 38205F481C2185A8003744D8;
			remoteInfo = gReceiverS;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		38205F491C2185A8003744D8 /* gReceiverS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = gReceiverS.app; sourceTree = BUILT_PRODUCTS_DIR; };
		38205F4C1C2185A8003744D8 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
		38205F4E1C2185A8003744D8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		38205F531C2185A8003744D8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		38205F581C2185A8003744D8 /* gReceiverSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gReceiverSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		38205F5C1C2185A8003744D8 /* gReceiverSTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = gReceiverSTests.swift; sourceTree = "<group>"; };
		38205F5E1C2185A8003744D8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		38205F631C2185A8003744D8 /* gReceiverSUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gReceiverSUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		38205F671C2185A8003744D8 /* gReceiverSUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = gReceiverSUITests.swift; sourceTree = "<group>"; };
		38205F691C2185A8003744D8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		38205F7C1C218783003744D8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
		38205F891C218956003744D8 /* bsdserial.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsdserial.c; sourceTree = "<group>"; };
		38205F8A1C218956003744D8 /* bsdserial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.objj.h; path = bsdserial.h; sourceTree = "<group>"; };
		38205F8E1C218956003744D8 /* tgtypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.objj.h; path = tgtypes.h; sourceTree = "<group>"; };
		38205F971C218E17003744D8 /* gCorderInterface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gCorderInterface.c; sourceTree = "<group>"; };
		38205F991C218E1F003744D8 /* gCorderInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.objj.h; path = gCorderInterface.h; sourceTree = "<group>"; };
		38205FA11C2194AA003744D8 /* gReceiverS-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.objj.h; path = "gReceiverS-Bridging-Header.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		38205F461C2185A8003744D8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F551C2185A8003744D8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F601C2185A8003744D8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		38205F401C2185A8003744D8 = {
			isa = PBXGroup;
			children = (
				38205F4B1C2185A8003744D8 /* gReceiverS */,
				38205F5B1C2185A8003744D8 /* gReceiverSTests */,
				38205F661C2185A8003744D8 /* gReceiverSUITests */,
				38205F4A1C2185A8003744D8 /* Products */,
			);
			sourceTree = "<group>";
		};
		38205F4A1C2185A8003744D8 /* Products */ = {
			isa = PBXGroup;
			children = (
				38205F491C2185A8003744D8 /* gReceiverS.app */,
				38205F581C2185A8003744D8 /* gReceiverSTests.xctest */,
				38205F631C2185A8003744D8 /* gReceiverSUITests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		38205F4B1C2185A8003744D8 /* gReceiverS */ = {
			isa = PBXGroup;
			children = (
				38205F7E1C218923003744D8 /* Supporting Files */,
				38205F7B1C218783003744D8 /* MainMenu.xib */,
				38205F4C1C2185A8003744D8 /* AppDelegate.swift */,
				38205F4E1C2185A8003744D8 /* Assets.xcassets */,
				38205F531C2185A8003744D8 /* Info.plist */,
				38205FA11C2194AA003744D8 /* gReceiverS-Bridging-Header.h */,
			);
			path = gReceiverS;
			sourceTree = "<group>";
		};
		38205F5B1C2185A8003744D8 /* gReceiverSTests */ = {
			isa = PBXGroup;
			children = (
				38205F5C1C2185A8003744D8 /* gReceiverSTests.swift */,
				38205F5E1C2185A8003744D8 /* Info.plist */,
			);
			path = gReceiverSTests;
			sourceTree = "<group>";
		};
		38205F661C2185A8003744D8 /* gReceiverSUITests */ = {
			isa = PBXGroup;
			children = (
				38205F671C2185A8003744D8 /* gReceiverSUITests.swift */,
				38205F691C2185A8003744D8 /* Info.plist */,
			);
			path = gReceiverSUITests;
			sourceTree = "<group>";
		};
		38205F7E1C218923003744D8 /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				38205F7F1C218945003744D8 /* gCorder */,
				38205F841C218956003744D8 /* SERIAL */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		38205F7F1C218945003744D8 /* gCorder */ = {
			isa = PBXGroup;
			children = (
				38205F991C218E1F003744D8 /* gCorderInterface.h */,
				38205F971C218E17003744D8 /* gCorderInterface.c */,
			);
			path = gCorder;
			sourceTree = "<group>";
		};
		38205F841C218956003744D8 /* SERIAL */ = {
			isa = PBXGroup;
			children = (
				38205F881C218956003744D8 /* OSX */,
				38205F8E1C218956003744D8 /* tgtypes.h */,
			);
			path = SERIAL;
			sourceTree = "<group>";
		};
		38205F881C218956003744D8 /* OSX */ = {
			isa = PBXGroup;
			children = (
				38205F891C218956003744D8 /* bsdserial.c */,
				38205F8A1C218956003744D8 /* bsdserial.h */,
			);
			path = OSX;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		38205F481C2185A8003744D8 /* gReceiverS */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 38205F6C1C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverS" */;
			buildPhases = (
				38205F451C2185A8003744D8 /* Sources */,
				38205F461C2185A8003744D8 /* Frameworks */,
				38205F471C2185A8003744D8 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = gReceiverS;
			productName = gReceiverS;
			productReference = 38205F491C2185A8003744D8 /* gReceiverS.app */;
			productType = "com.apple.product-type.application";
		};
		38205F571C2185A8003744D8 /* gReceiverSTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 38205F6F1C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverSTests" */;
			buildPhases = (
				38205F541C2185A8003744D8 /* Sources */,
				38205F551C2185A8003744D8 /* Frameworks */,
				38205F561C2185A8003744D8 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				38205F5A1C2185A8003744D8 /* PBXTargetDependency */,
			);
			name = gReceiverSTests;
			productName = gReceiverSTests;
			productReference = 38205F581C2185A8003744D8 /* gReceiverSTests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
		38205F621C2185A8003744D8 /* gReceiverSUITests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 38205F721C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverSUITests" */;
			buildPhases = (
				38205F5F1C2185A8003744D8 /* Sources */,
				38205F601C2185A8003744D8 /* Frameworks */,
				38205F611C2185A8003744D8 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				38205F651C2185A8003744D8 /* PBXTargetDependency */,
			);
			name = gReceiverSUITests;
			productName = gReceiverSUITests;
			productReference = 38205F631C2185A8003744D8 /* gReceiverSUITests.xctest */;
			productType = "com.apple.product-type.bundle.ui-testing";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		38205F411C2185A8003744D8 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0720;
				LastUpgradeCheck = 0720;
				ORGANIZATIONNAME = "Pandora,Inc";
				TargetAttributes = {
					38205F481C2185A8003744D8 = {
						CreatedOnToolsVersion = 7.2;
					};
					38205F571C2185A8003744D8 = {
						CreatedOnToolsVersion = 7.2;
						TestTargetID = 38205F481C2185A8003744D8;
					};
					38205F621C2185A8003744D8 = {
						CreatedOnToolsVersion = 7.2;
						TestTargetID = 38205F481C2185A8003744D8;
					};
				};
			};
			buildConfigurationList = 38205F441C2185A8003744D8 /* Build configuration list for PBXProject "gReceiverS" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 38205F401C2185A8003744D8;
			productRefGroup = 38205F4A1C2185A8003744D8 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				38205F481C2185A8003744D8 /* gReceiverS */,
				38205F571C2185A8003744D8 /* gReceiverSTests */,
				38205F621C2185A8003744D8 /* gReceiverSUITests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		38205F471C2185A8003744D8 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				38205F4F1C2185A8003744D8 /* Assets.xcassets in Resources */,
				38205F7D1C218783003744D8 /* MainMenu.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F561C2185A8003744D8 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F611C2185A8003744D8 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		38205F451C2185A8003744D8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				38205F911C218956003744D8 /* bsdserial.c in Sources */,
				38205F4D1C2185A8003744D8 /* AppDelegate.swift in Sources */,
				38205F981C218E17003744D8 /* gCorderInterface.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F541C2185A8003744D8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				38205F5D1C2185A8003744D8 /* gReceiverSTests.swift in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		38205F5F1C2185A8003744D8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				38205F681C2185A8003744D8 /* gReceiverSUITests.swift in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		38205F5A1C2185A8003744D8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 38205F481C2185A8003744D8 /* gReceiverS */;
			targetProxy = 38205F591C2185A8003744D8 /* PBXContainerItemProxy */;
		};
		38205F651C2185A8003744D8 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 38205F481C2185A8003744D8 /* gReceiverS */;
			targetProxy = 38205F641C2185A8003744D8 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		38205F7B1C218783003744D8 /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				38205F7C1C218783003744D8 /* Base */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		38205F6A1C2185A8003744D8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "-";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.10;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
			};
			name = Debug;
		};
		38205F6B1C2185A8003744D8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "-";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.10;
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = macosx;
			};
			name = Release;
		};
		38205F6D1C2185A8003744D8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				COMBINE_HIDPI_IMAGES = YES;
				EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
				ENABLE_TESTABILITY = NO;
				INFOPLIST_FILE = gReceiverS/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverS;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_OBJC_BRIDGING_HEADER = "gReceiverS-Bridging-Header.h";
			};
			name = Debug;
		};
		38205F6E1C2185A8003744D8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				COMBINE_HIDPI_IMAGES = YES;
				EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
				INFOPLIST_FILE = gReceiverS/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverS;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_OBJC_BRIDGING_HEADER = "gReceiverS-Bridging-Header.h";
			};
			name = Release;
		};
		38205F701C2185A8003744D8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverSTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverSTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/gReceiverS.app/Contents/MacOS/gReceiverS";
			};
			name = Debug;
		};
		38205F711C2185A8003744D8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverSTests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverSTests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/gReceiverS.app/Contents/MacOS/gReceiverS";
			};
			name = Release;
		};
		38205F731C2185A8003744D8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverSUITests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverSUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = gReceiverS;
				USES_XCTRUNNER = YES;
			};
			name = Debug;
		};
		38205F741C2185A8003744D8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverSUITests/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverSUITests;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_TARGET_NAME = gReceiverS;
				USES_XCTRUNNER = YES;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		38205F441C2185A8003744D8 /* Build configuration list for PBXProject "gReceiverS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				38205F6A1C2185A8003744D8 /* Debug */,
				38205F6B1C2185A8003744D8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		38205F6C1C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				38205F6D1C2185A8003744D8 /* Debug */,
				38205F6E1C2185A8003744D8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		38205F6F1C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverSTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				38205F701C2185A8003744D8 /* Debug */,
				38205F711C2185A8003744D8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		38205F721C2185A8003744D8 /* Build configuration list for PBXNativeTarget "gReceiverSUITests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				38205F731C2185A8003744D8 /* Debug */,
				38205F741C2185A8003744D8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 38205F411C2185A8003744D8 /* Project object */;
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<












































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS.xcodeproj/project.xcworkspace/contents.xcworkspacedata.
1
2
3
4
5
6
7
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
   version = "1.0">
   <FileRef
      location = "self:gReceiverS.xcodeproj">
   </FileRef>
</Workspace>
<
<
<
<
<
<
<














Deleted gReceiverS/gReceiverS.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate.

cannot compute difference between binary files

Deleted gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist.
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
   type = "1"
   version = "2.0">
</Bucket>
<
<
<
<
<










Deleted gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcschemes/gReceiverS.xcscheme.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "0720"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "38205F481C2185A8003744D8"
               BuildableName = "gReceiverS.app"
               BlueprintName = "gReceiverS"
               ReferencedContainer = "container:gReceiverS.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES">
      <Testables>
         <TestableReference
            skipped = "NO">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "38205F571C2185A8003744D8"
               BuildableName = "gReceiverSTests.xctest"
               BlueprintName = "gReceiverSTests"
               ReferencedContainer = "container:gReceiverS.xcodeproj">
            </BuildableReference>
         </TestableReference>
         <TestableReference
            skipped = "NO">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "38205F621C2185A8003744D8"
               BuildableName = "gReceiverSUITests.xctest"
               BlueprintName = "gReceiverSUITests"
               ReferencedContainer = "container:gReceiverS.xcodeproj">
            </BuildableReference>
         </TestableReference>
      </Testables>
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "38205F481C2185A8003744D8"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
      <AdditionalOptions>
      </AdditionalOptions>
   </TestAction>
   <LaunchAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      debugServiceExtension = "internal"
      allowLocationSimulation = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "38205F481C2185A8003744D8"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
      <AdditionalOptions>
      </AdditionalOptions>
   </LaunchAction>
   <ProfileAction
      buildConfiguration = "Release"
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      debugDocumentVersioning = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "38205F481C2185A8003744D8"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<






























































































































































































































Deleted gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcschemes/xcschememanagement.plist.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>SchemeUserState</key>
	<dict>
		<key>gReceiverS.xcscheme</key>
		<dict>
			<key>orderHint</key>
			<integer>0</integer>
		</dict>
	</dict>
	<key>SuppressBuildableAutocreation</key>
	<dict>
		<key>38205F481C2185A8003744D8</key>
		<dict>
			<key>primary</key>
			<true/>
		</dict>
		<key>38205F571C2185A8003744D8</key>
		<dict>
			<key>primary</key>
			<true/>
		</dict>
		<key>38205F621C2185A8003744D8</key>
		<dict>
			<key>primary</key>
			<true/>
		</dict>
	</dict>
</dict>
</plist>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
































































Deleted gReceiverS/gReceiverS/AppDelegate.swift.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
//  AppDelegate.swift
//  gReceiverS
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

import Cocoa
import Foundation
import IOKit
import AppKit

var gcord: UnsafeMutablePointer<gCORD> = nil;

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate
{
	@IBOutlet weak var window: NSWindow!

	// GUI Display
	@IBOutlet weak var portSelector: NSComboBox!
	@IBOutlet weak var timeStepField: NSTextField!
	@IBOutlet weak var gRangeField: NSMatrix!
	@IBOutlet weak var triggerField: NSTextField!
	@IBOutlet weak var statusText: NSTextField!

	// GUI Control
	@IBOutlet weak var armButton: NSButton!
	@IBOutlet weak var readButton: NSButton!
	@IBOutlet weak var displayButton: NSButton!
	@IBOutlet weak var saveButton: NSButton!

	func applicationDidFinishLaunching(aNotification: NSNotification)
	{
		// Insert code here to initialize your application
	}

	func applicationWillTerminate(aNotification: NSNotification)
	{
		// Insert code here to tear down your application
	}

	// Close app when window closes
	@objc func applicationShouldTerminateAfterLastWindowClosed(sender: NSApplication) -> Bool
	{
		return true;
	}

}

<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<






































































































Deleted gReceiverS/gReceiverS/Assets.xcassets/AppIcon.appiconset/Contents.json.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  "images" : [
    {
      "idiom" : "mac",
      "size" : "16x16",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "16x16",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "32x32",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "32x32",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "128x128",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "128x128",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "256x256",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "256x256",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "512x512",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "512x512",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<




















































































































Deleted gReceiverS/gReceiverS/Base.lproj/MainMenu.xib.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="14F1509" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
    <dependencies>
        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/>
    </dependencies>
    <objects>
        <customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
            <connections>
                <outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq"/>
            </connections>
        </customObject>
        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
        <customObject id="Voe-Tx-rLC" customClass="AppDelegate">
            <connections>
                <outlet property="armButton" destination="8gQ-eS-69R" id="qyz-8i-N45"/>
                <outlet property="displayButton" destination="R9e-PA-uxM" id="PeJ-I6-ri9"/>
                <outlet property="gRangeField" destination="Kvz-0P-ukC" id="jWQ-HI-E1w"/>
                <outlet property="portSelector" destination="zF9-vG-QiB" id="RcO-Kd-NpO"/>
                <outlet property="readButton" destination="oeL-CU-xzJ" id="YhH-u3-Kch"/>
                <outlet property="saveButton" destination="Dfg-xh-OAc" id="H4y-Wx-NdX"/>
                <outlet property="statusText" destination="SmS-Sn-ByP" id="TlU-33-LXL"/>
                <outlet property="timeStepField" destination="1qb-Y0-SAV" id="UqO-oe-1F8"/>
                <outlet property="triggerField" destination="mq0-6W-kZQ" id="QhM-EU-8jW"/>
                <outlet property="window" destination="QvC-M9-y7g" id="gIp-Ho-8D9"/>
            </connections>
        </customObject>
        <customObject id="YLy-65-1bz" customClass="NSFontManager"/>
        <menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
            <items>
                <menuItem title="gReceiver" id="1Xt-HY-uBw">
                    <modifierMask key="keyEquivalentModifierMask"/>
                    <menu key="submenu" title="gReceiver" systemMenu="apple" id="uQy-DD-JDr">
                        <items>
                            <menuItem title="About gReceiver" id="5kV-Vb-QxS">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <connections>
                                    <action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem"/>
                                </connections>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="VOq-y0-SEH"/>
                            <menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW"/>
                            <menuItem isSeparatorItem="YES" id="wFC-TO-SCJ"/>
                            <menuItem title="Services" id="NMo-om-nkz">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <menu key="submenu" title="Services" systemMenu="services" id="hz9-B4-Xy5"/>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="4je-JR-u6R"/>
                            <menuItem title="Hide gReceiver" keyEquivalent="h" id="Olw-nP-bQN">
                                <connections>
                                    <action selector="hide:" target="-1" id="PnN-Uc-m68"/>
                                </connections>
                            </menuItem>
                            <menuItem title="Hide Others" keyEquivalent="h" id="Vdr-fp-XzO">
                                <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
                                <connections>
                                    <action selector="hideOtherApplications:" target="-1" id="VT4-aY-XCT"/>
                                </connections>
                            </menuItem>
                            <menuItem title="Show All" id="Kd2-mp-pUS">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <connections>
                                    <action selector="unhideAllApplications:" target="-1" id="Dhg-Le-xox"/>
                                </connections>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="kCx-OE-vgT"/>
                            <menuItem title="Quit gReceiver" keyEquivalent="q" id="4sb-4s-VLi">
                                <connections>
                                    <action selector="terminate:" target="-1" id="Te7-pn-YzF"/>
                                </connections>
                            </menuItem>
                        </items>
                    </menu>
                </menuItem>
            </items>
        </menu>
        <window title="gReceiver" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="QvC-M9-y7g">
            <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
            <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
            <rect key="contentRect" x="335" y="390" width="365" height="212"/>
            <rect key="screenRect" x="0.0" y="0.0" width="1600" height="877"/>
            <view key="contentView" id="EiT-Mj-1SZ">
                <rect key="frame" x="0.0" y="0.0" width="365" height="212"/>
                <autoresizingMask key="autoresizingMask"/>
                <subviews>
                    <comboBox verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zF9-vG-QiB">
                        <rect key="frame" x="35" y="156" width="210" height="26"/>
                        <comboBoxCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" completes="NO" numberOfVisibleItems="5" id="qaZ-i6-yMT">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                            <objectValues>
                                <string>Item 1</string>
                                <string>Item 2</string>
                                <string>Item 3</string>
                            </objectValues>
                        </comboBoxCell>
                        <connections>
                            <action selector="portSet:" target="Voe-Tx-rLC" id="hHK-uF-8h9"/>
                        </connections>
                    </comboBox>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="T5Y-b4-feX">
                        <rect key="frame" x="35" y="188" width="84" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="gCorder Port" id="4DC-Q2-8Sf">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pdN-d8-2zd">
                        <rect key="frame" x="42" y="130" width="52" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="gRange" id="f8s-1x-S5h">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="C2D-CE-Kim">
                        <rect key="frame" x="128" y="130" width="100" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Time Step (ms)" id="B02-O0-MFC">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="7gT-pI-uVd">
                        <rect key="frame" x="126" y="69" width="100" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Status" id="OkP-id-KHa">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tOn-Zr-NqH">
                        <rect key="frame" x="247" y="130" width="75" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Trigger %" id="ijM-P0-4jw">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <matrix verticalHuggingPriority="750" fixedFrame="YES" allowsEmptySelection="NO" autorecalculatesCellSize="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Kvz-0P-ukC">
                        <rect key="frame" x="44" y="64" width="78" height="58"/>
                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        <size key="cellSize" width="42" height="18"/>
                        <size key="intercellSpacing" width="4" height="2"/>
                        <buttonCell key="prototype" type="radio" title="Radio" imagePosition="left" alignment="left" inset="2" id="6Mw-9Q-VYa">
                            <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <cells>
                            <column>
                                <buttonCell type="radio" title="2 g" imagePosition="left" alignment="left" state="on" tag="1" inset="2" id="3AI-cF-ua2">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                                <buttonCell type="radio" title="4 g" imagePosition="left" alignment="left" inset="2" id="VTc-Ke-Ful">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                                <buttonCell type="radio" title="8 g" imagePosition="left" alignment="left" inset="2" id="W3i-Fl-arQ">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                            </column>
                        </cells>
                        <connections>
                            <action selector="gRange:" target="Voe-Tx-rLC" id="UVQ-u6-Sc8"/>
                        </connections>
                    </matrix>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1qb-Y0-SAV">
                        <rect key="frame" x="130" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" title="10" placeholderString="" drawsBackground="YES" id="YZz-On-P3I">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                        <connections>
                            <action selector="timeStep:" target="Voe-Tx-rLC" id="i6b-1b-QjD"/>
                        </connections>
                    </textField>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Cob-Cv-GjR">
                        <rect key="frame" x="249" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="10" drawsBackground="YES" id="na4-xp-2Jo">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                        <connections>
                            <action selector="timeStep:" target="Voe-Tx-rLC" id="Krs-71-TcO"/>
                        </connections>
                    </textField>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mq0-6W-kZQ">
                        <rect key="frame" x="249" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" title="10" placeholderString="" drawsBackground="YES" id="2nA-dJ-8Qw">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                        <connections>
                            <action selector="triggerValue:" target="Voe-Tx-rLC" id="BQa-Bf-1PC"/>
                        </connections>
                    </textField>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oeL-CU-xzJ">
                        <rect key="frame" x="102" y="17" width="73" height="32"/>
                        <buttonCell key="cell" type="push" title="Read" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="6aE-yE-byN">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="readSensor:" target="Voe-Tx-rLC" id="Jdb-1i-cxy"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="8gQ-eS-69R">
                        <rect key="frame" x="14" y="17" width="82" height="32"/>
                        <buttonCell key="cell" type="push" title="Arm" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="3KA-SH-ZDk">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="armSensor:" target="Voe-Tx-rLC" id="gWa-be-9qp"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dfg-xh-OAc">
                        <rect key="frame" x="269" y="17" width="71" height="32"/>
                        <buttonCell key="cell" type="push" title="Save" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="xFA-l9-OMR">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="saveData:" target="Voe-Tx-rLC" id="Ejr-yG-dXL"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="R9e-PA-uxM">
                        <rect key="frame" x="183" y="17" width="86" height="32"/>
                        <buttonCell key="cell" type="push" title="Display" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="hGP-bi-VWl">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="displayData:" target="Voe-Tx-rLC" id="Vfg-O3-jyR"/>
                        </connections>
                    </button>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SmS-Sn-ByP">
                        <rect key="frame" x="180" y="64" width="165" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="7YL-ce-Lf8">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                </subviews>
            </view>
            <connections>
                <outlet property="delegate" destination="Voe-Tx-rLC" id="bme-H5-LCk"/>
            </connections>
            <point key="canvasLocation" x="395.5" y="283"/>
        </window>
    </objects>
</document>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<








































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS/Info.plist.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIconFile</key>
	<string></string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>LSMinimumSystemVersion</key>
	<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
	<key>NSHumanReadableCopyright</key>
	<string>Copyright © 2015 Pandora,Inc. All rights reserved.</string>
	<key>NSMainNibFile</key>
	<string>MainMenu</string>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>
</dict>
</plist>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<




































































Deleted gReceiverS/gReceiverS/SERIAL/Linux/linserial.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         LINSERIAL		- Serial Support on a Linux system
*
*  Description:         This will list,open,setup and close serial ports
*						on Linux
*
*  Author:              Jim Schimpf
*
*  Revision History:	1 Dec 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( int psn,
*											PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "linserial.h"

// **** LOCAL FUNCTIONS ***

static int GetPortState( PORT_HANDLE *h );
static int SetPortState( int state,PORT_HANDLE *h );

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts()	- Get a list of SERIAL RS-232 ports
*
*	INPUT:NONE
*
*	OUTPUT:	NULL
*	This is not supported in Linux now so just return NULL
*
*****************************************************************/

PORT_LIST *ListPorts(void)
{
	PORT_LIST *base = NULL;
	
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( base->path );
		if( base->name != NULL )
			MEMFREE( base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( int psn,PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	psn		- Psn in list (base = 1)
*			p		- PORT_LIST 
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *base,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h;
	int i;
	int error;
	PORT_LIST *p;
	
	// (0) Find the slot in the port list
	
	for( i=0, p = base; i<psn-1 && p != NULL ; i++ )
	{
		p = p->next;
	}
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = -1;				// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = open(p->path, O_RDWR | O_NOCTTY | O_NONBLOCK);
	if( h->fd == -1 )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	ioctl(h->fd, TIOCEXCL);	// Set for exclusive OPEN
	
	// (2a) Get current values fron port
	// Save originals and copy into run area
    if (tcgetattr(h->fd, &(h->orig)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	memcpy(&(h->run),&(h->orig),sizeof(struct termios));
	
    // (3) Set options to baud rate, 8 bits, parity, & size no flow
    // Init flags then set
	
	//*********** CONTROL FLAG SET
    h->run.c_cflag = 0;
	
	if( parity == SER_PARITY_NONE )
		h->run.c_cflag |= CS8;			// 8 Bit words
	else
	{
		h->run.c_cflag |= CS7;			// 7 Bit words with parity
		h->run.c_cflag |= PARENB;		// Parity enable
		if( parity == SER_PARITY_ODD )
			h->run.c_cflag |= PARODD;	// ODD parity
	}
		
	if( stop == SER_STOP_TWO )
		h->run.c_cflag |= CSTOPB;		// Two stop bits (1 by default)
		
    h->run.c_cflag |= CREAD;		// Enable input
    h->run.c_cflag |= CLOCAL;		// Ignore modem cntl lines
    
	//************* INPUT FLAGS SET
    h->run.c_iflag = 0;
    h->run.c_iflag |= IGNBRK;
	if( parity != SER_PARITY_NONE )
		h->run.c_iflag |= INPCK;	// Parity check
    
	//************* LINE FLAGS SET
    h->run.c_lflag = 0;				// No echo input
    
	//************* OPTION CHARACTERS
    for( i=0; i<NCCS; i++ )			// REF:JS12052003 Change to clear all option chars
        h->run.c_cc[i] = 0;
        
    h->run.c_cc[VMIN] = 0;			// Non blocking input
    h->run.c_cc[VTIME] = 0;			// REF:JS12052003 Set to not wait
									// for either min char or time

    printf("Options set now: CFLAG [%X] IFLAG [%X] OFLAG [%X]\n",
                    (int)h->run.c_cflag,
                    (int)h->run.c_iflag,
                    (int)h->run.c_oflag);
    // (4) Set the baud rates, if you try this in reverse order
    // then the c_flag -> 0 and will wipe out the baud rates
    // (i.e. baudrate = 0)
    
	error = cfsetospeed( &(h->run),baud );
	error = cfsetispeed( &(h->run),baud );

    // (5) Cause the new options to take effect immediately.
    if (tcsetattr(h->fd, TCSANOW, &(h->run)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
    // (6) Print the new input and output baud rates & return the results
    
    printf("Input baud rate changed to %d\n", (int) cfgetispeed(&(h->run)));
    printf("Output baud rate changed to %d\n", (int) cfgetospeed(&(h->run)));

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != -1 )
		{
			tcsetattr(h->fd, TCSANOW, &(h->orig));
			close(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}
}
#pragma mark -- PORT I/O API --

/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

int WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = write(h->fd,buffer,size );
	}
	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = read(h->fd,buffer,size );
	}
	
	return( rtn );
}

#pragma mark -- PORT MISC --
/***********************************************************************
*
* int CTSPort( PORT_HANDLE *h ) - Return CTS state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - CTS not asserted
*
************************************************************************/

int CTSPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int cts;
	
	// Extract RTS state
	
	if( state & TIOCM_CTS )
	{
		cts = 1;
	}
	else
	{
		cts = 0;
	}
	
	return( cts );
}

/***********************************************************************
*
* void DTRPort( int flag,PORT_HANDLE *h) - Set DTR state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove DTR
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void DTRPort( int dtr,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( dtr )
	{
		state = state | TIOCM_DTR;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_DTR;		// Clear DTR
	}
	
	SetPortState( state,h );
}

#pragma mark -- Support (INTERNAL) --

/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->path,portstr);
	
	// (2) Now walk back through the portstr and find the first "/"
	// from there to the end is the name of the port
	
	ptr = portstr;
	ptr += len;			// Move to the end of the string
	// Scan backwards through the string
	for( ; ptr >= portstr; ptr-- )
	{
		if( *ptr == '/' )
			break;				// We have found the left end of the name
								// Actually 1 less than that see below
	}
	
	ptr++;						// Move to start of name
								// Now build the name holder
	len = strlen(ptr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE(pl->path);	// FAILURE
		MEMFREE(pl);
		return( NULL );
	}
	strcpy(pl->name,ptr);
	
	// (3) All done return filled out struct
	
	return( pl );
}


/***********************************************************************
*
* int GetPortState(PORT_HANDLE *h)	- Get state value from tty
*
*	INPUT: 	xh		- Handle to open serial port
*
*	OUTPUT:	Terminal state as per bits in sys/ioctl.h
*			Return 0 if bad state
*
************************************************************************/

static int GetPortState( PORT_HANDLE *h )
{
    int state = 0;
	int val;
	
	// (2) Read state
	
	val = ioctl(h->fd,TIOCMGET,&state);
	if( val < 0 )
	{
		state = 0;		// ERROR
	}
	return( state );
}

/***********************************************************************
*
* int SetPortState(int state, PORT_HANDLE *h)	- Set state value for tty
*
*	INPUT:  state   - Set TTY state to this
*			xh		- Handle to open serial port
*
*	OUTPUT:	Return 1 if OK, 0 if fail
*
************************************************************************/

static int SetPortState( int state,PORT_HANDLE *h )
{
    int rtnval = 0;
	int val;
	
	// (1) Is it valid ?
	
	// (2) Set state
	
	val = ioctl(h->fd,TIOCMSET,&state);
	if( val >= 0 )
	{
		rtnval = 1;		// SUCCESS
	}
	return( rtnval );
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<




































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/Linux/linserial.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         LINSERIAL		- Serial Support on a Linux system
*
*  Description:         This will list,open,setup and close serial ports
*						on Linux
*
*  Author:              Jim Schimpf
*
*  Revision History:	1 Dec 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()				- NOP here
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <paths.h>
#include <termios.h>
#include <sysexits.h>
#include <sys/param.h>
#include <sys/select.h>
#include <sys/time.h>
#include <time.h>
#include "tgtypes.h"

#ifndef LINSERIAL_H
#define LINSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						char *path;				// Path of port
						char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					struct termios orig;	// Original values
					struct termios run;		// Run values
					int fd;					// Port descriptor
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(void);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

// *** PORT MISC

int CTSPort( PORT_HANDLE *h );				// Read CTS
void DTRPort( int flag,PORT_HANDLE *h);		// Set DTR

#endif
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<






























































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/OSX/bsdserial.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         BSDSERIAL		- Serial Support on a BSD system
*
*  Description:         This will list,open,setup and close serial ports
*						on BSD
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*						 2 Dec 2005 Convert the open to find the value in the
*									port list & add DTR, CTS functions
*						16-Apr-2009	Add ability to use modem ports
*						17 Apr 2009 Add working StatPort() 
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( int psn,
*											PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "bsdserial.h"

// **** LOCAL FUNCTIONS ***

static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices);
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize);
static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl);
static int GetPortState( PORT_HANDLE *h );
static int SetPortState( int state,PORT_HANDLE *h );

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts(int modems)	- Get a list of SERIAL RS-232 ports
*
*	INPUT:modems	- If <> 0 then look for modems too
*
*	OUTPUT:	Linked list of port data
*			NULL if none
*
*****************************************************************/

PORT_LIST *ListPorts(int modems)
{
	char portstr[256];
	io_iterator_t matchingServices;
	int pcount = 0;
	PORT_LIST *base = NULL;
	PORT_LIST *pl;
	PORT_LIST *last = NULL;
	
	// (1) Now loop through available ports and build a list
	
	while( 1 )
	{
		// (2) Build an iterator for our list of ports
		
		if( FindPorts( modems,&matchingServices ) != KERN_SUCCESS )
		{
			break;		// Failure - no ports
		}

		if( GetPortPath(pcount,
					matchingServices,
					portstr,
					sizeof(portstr)) != KERN_SUCCESS )
		{
			break;			// Done....
		}
		
		// (2a) We have a port here so build a PORT_LIST from the 
		// string we just received
		
		pl = NEW_PORT_LIST;
		if( pl == NULL )
			break;				// FAILURE !!!
			
		pl = add_port_names(portstr,pl);
		if( pl == NULL )
			break;				// FAILURE
			
		// (3) Now add the element to the end of the list
		// Two cases:
		//		base == NULL	- First element just replace
		//		base != NULL	- Just add after last
		
		if( base == NULL )
		{
			base = pl;
			last = pl;
		}
		else
		{
			last->next = pl;
			last = pl;
		}
		pcount = pcount + 1;
	}
	
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( base->path );
		if( base->name != NULL )
			MEMFREE( base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( char *name
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	name	- Name of port in list
*			modem	- 1 if modems are included
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPortbyName( char *name,
						int modem,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_LIST *list,*pl;
	PORT_HANDLE *ph = NULL;
	int psn;
	
	// (1) Get the port list and use it
	//		to match our name
	
	list = ListPorts(modem);
	if( list != NULL )
	{
		// Now try to match our name
		
		pl = list;
		psn = 0;
		while( pl != NULL )
		{
			if( strcmp(pl->name,name) == 0 )
				break;
			
			// Try next
			
			psn++;
			pl = pl->next;
		}
		
		// If found try to open
		if(pl != NULL )
		{
			ph = OpenPort(psn+1, list, baud, stop, parity);
			
			// Tidy up and return
			
			FreePorts(list);
		}
	}
	
	return ph;
}

/****************************************************************
*
*  PORT_HANDLE *OpenPort( int psn,PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	psn		- Psn in list (base = 1)
*			p		- PORT_LIST 
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *base,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h;
	int i;
	int error;
	PORT_LIST *p;
	
	// (0) Find the slot in the port list
	
	for( i=0, p = base; i<psn-1 && p != NULL ; i++ )
	{
		p = p->next;
	}
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = -1;				// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = (int)strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = (int)strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = open(p->path, O_RDWR | O_NOCTTY | O_NONBLOCK);
	if( h->fd == -1 )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	ioctl(h->fd, TIOCEXCL);	// Set for exclusive OPEN
	
	// (2a) Get current values fron port
	// Save originals and copy into run area
    if (tcgetattr(h->fd, &(h->orig)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	memcpy(&(h->run),&(h->orig),sizeof(struct termios));
	
    // (3) Set options to baud rate, 8 bits, parity, & size no flow
    // Init flags then set
	
	//*********** CONTROL FLAG SET
    h->run.c_cflag = 0;
	
	if( parity == SER_PARITY_NONE )
		h->run.c_cflag |= CS8;			// 8 Bit words
	else
	{
		h->run.c_cflag |= CS7;			// 7 Bit words with parity
		h->run.c_cflag |= PARENB;		// Parity enable
		if( parity == SER_PARITY_ODD )
			h->run.c_cflag |= PARODD;	// ODD parity
	}
		
	if( stop == SER_STOP_TWO )
		h->run.c_cflag |= CSTOPB;		// Two stop bits (1 by default)
		
    h->run.c_cflag |= CREAD;		// Enable input
    h->run.c_cflag |= CLOCAL;		// Ignore modem cntl lines
    
	//************* INPUT FLAGS SET
    h->run.c_iflag = 0;
    h->run.c_iflag |= IGNBRK;
	if( parity != SER_PARITY_NONE )
		h->run.c_iflag |= INPCK;	// Parity check
    
	//************* LINE FLAGS SET
    h->run.c_lflag = 0;				// No echo input
    
	//************* OPTION CHARACTERS
    for( i=0; i<NCCS; i++ )			// REF:JS12052003 Change to clear all option chars
        h->run.c_cc[i] = 0;
        
    h->run.c_cc[VMIN] = 0;			// Non blocking input
    h->run.c_cc[VTIME] = 0;			// REF:JS12052003 Set to not wait
									// for either min char or time

    printf("Options set now: CFLAG [%X] IFLAG [%X] OFLAG [%X]\n",
                    (int)h->run.c_cflag,
                    (int)h->run.c_iflag,
                    (int)h->run.c_oflag);
    // (4) Set the baud rates, if you try this in reverse order
    // then the c_flag -> 0 and will wipe out the baud rates
    // (i.e. baudrate = 0)
    
	error = cfsetospeed( &(h->run),baud );
	error = cfsetispeed( &(h->run),baud );

    // (5) Cause the new options to take effect immediately.
    if (tcsetattr(h->fd, TCSANOW, &(h->run)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
    // (6) Print the new input and output baud rates & return the results
    
    printf("Input baud rate changed to %d\n", (int) cfgetispeed(&(h->run)));
    printf("Output baud rate changed to %d\n", (int) cfgetospeed(&(h->run)));

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != -1 )
		{
			tcsetattr(h->fd, TCSANOW, &(h->orig));
			close(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}
}
#pragma mark -- PORT I/O API --

/***********************************************************************
*
* int StatPort( PORT_HANDLE *h )	- Data present on port ?
*
*	INPUT:	dwelltime	- # MS to scan for data 0 => no wait
*			h			- To this port
*
*	OUTPUT:	1	- Data present for read, 0 no data
*
************************************************************************/

int StatPort( int dwelltime,PORT_HANDLE *h )
{
	int rtnval = 0;
	fd_set scan;
	struct timeval seltime; // Select timeout time
	
	// (1) Build scan array and set up time
	
	FD_ZERO( &scan );
	FD_SET( h->fd,&scan );
	seltime.tv_sec = dwelltime / 1000;
	seltime.tv_usec = (dwelltime - (1000 * (int)seltime.tv_sec)) * 1000;
	
	// (2) Do a select on the socket
	
	rtnval = select(h->fd+1,&scan,NULL,NULL,&seltime);
	if( rtnval < 0 )
		rtnval = 0;		// If failure return 0
		
	return( rtnval );
}

/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

int WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = (int)write(h->fd,buffer,size );
	}
	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = (int)read(h->fd,buffer,size );
	}
	
	return( rtn );
}

#pragma mark -- PORT MISC --
/***********************************************************************
*
* int CTSPort( PORT_HANDLE *h ) - Return CTS state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - CTS not asserted
*
************************************************************************/

int CTSPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int cts;
	
	// Extract RTS state
		
	if( state & TIOCM_CTS )
	{
		cts = 1;
	}
	else
	{
		cts = 0;
	}
	
	return( cts );
}

/***********************************************************************
*
* int DCDPort( PORT_HANDLE *h ) - Return DCD state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - DCD not asserted
*
************************************************************************/

int DCDPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int dcd;
	
	// Extract RTS state
		
	if( state & TIOCM_CTS )
	{
		dcd = 1;
	}
	else
	{
		dcd = 0;
	}
	
	return( dcd );
}


/***********************************************************************
*
* void DTRPort( int flag,PORT_HANDLE *h) - Set DTR state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove DTR
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void DTRPort( int flag,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( flag )
	{
		state = state | TIOCM_DTR;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_DTR;		// Clear DTR
	}
	
	SetPortState( state,h );
}

/***********************************************************************
*
* void RTSPort( int flag,PORT_HANDLE *h) - Set RTS state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove RTS
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void RTSPort( int flag,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( flag )
	{
		state = state | TIOCM_RTS;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_RTS;		// Clear DTR
	}
	
	SetPortState( state,h );
}


#pragma mark -- Support (INTERNAL) --
// ------- Support functions ------- READ OUT PORTS

/***********************************************************************
*
* FindPorts(io_iterator_t *i)	- Find an iterator to serial ports
*
*	INPUT: modem_flag				- TRUE if we are looking for a modem
*			matchingServices		- Fill with iterator to open ports
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Returns an iterator across all known modems. Caller is responsible for
// releasing the iterator when iteration is complete.
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices)
{
    kern_return_t		kernResult; 
    mach_port_t			masterPort;
    CFMutableDictionaryRef	classesToMatch;

/*! @function IOMasterPort
    @abstract Returns the mach port used to initiate communication with IOKit.
    @discussion Functions that don't specify an existing object require the IOKit master port to be passed. 
    @This function obtains that port.
    @param bootstrapPort Pass MACH_PORT_NULL for the default.
    @param masterPort The master port is returned.
    @result A kern_return_t error code. */

    kernResult = IOMasterPort(MACH_PORT_NULL, &masterPort);
    if (KERN_SUCCESS != kernResult)
    {
        printf("IOMasterPort returned %d\n", kernResult);
		goto exit;
    }
        
/*! @function IOServiceMatching
    @abstract Create a matching dictionary that specifies an IOService class match.
    @discussion A very common matching criteria for IOService is based on its class. IOServiceMatching will create a matching dictionary that specifies any IOService of a class, or its subclasses. The class is specified by C-string name.
    @param name The class name, as a const C-string. Class matching is successful on IOService's of this class or any subclass.
    @result The matching dictionary created, is returned on success, or zero on failure. The dictionary is commonly passed to IOServiceGetMatchingServices or IOServiceAddNotification which will consume a reference, otherwise it should be released with CFRelease by the caller. */

    // Serial devices are instances of class IOSerialBSDClient
    classesToMatch = IOServiceMatching(kIOSerialBSDServiceValue);
    if (classesToMatch == NULL)
    {
        printf("IOServiceMatching returned a NULL dictionary.\n");
    }
    else {
/*!
	@function CFDictionarySetValue
	Sets the value of the key in the dictionary.
	@param theDict The dictionary to which the value is to be set. If this
		parameter is not a valid mutable CFDictionary, the behavior is
		undefined. If the dictionary is a fixed-capacity dictionary and
		it is full before this operation, and the key does not exist in
		the dictionary, the behavior is undefined.
	@param key The key of the value to set into the dictionary. If a key 
		which matches this key is already present in the dictionary, only
		the value is changed ("add if absent, replace if present"). If
		no key matches the given key, the key-value pair is added to the
		dictionary. If added, the key is retained by the dictionary,
		using the retain callback provided
		when the dictionary was created. If the key is not of the sort
		expected by the key retain callback, the behavior is undefined.
	@param value The value to add to or replace into the dictionary. The value
		is retained by the dictionary using the retain callback provided
		when the dictionary was created, and the previous value if any is
		released. If the value is not of the sort expected by the
		retain or release callbacks, the behavior is undefined.
*/
		if( modem_flag )
		{
			// LOOK for MODEM HERE
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 //CFSTR(kIOSerialBSDModemType));
							 CFSTR(kIOSerialBSDAllTypes));
		}
		else
		{
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDRS232Type));
		}
		
        // Each serial device object has a property with key
        // kIOSerialBSDTypeKey and a value that is one of kIOSerialBSDAllTypes,
        // kIOSerialBSDModemType, or kIOSerialBSDRS232Type. You can experiment with the
        // matching by changing the last parameter in the above call to CFDictionarySetValue.
        
        // As shipped, this sample is only interested in modems,
        // so add this property to the CFDictionary we're matching on. 
        // This will find devices that advertise themselves as modems,
        // such as built-in and USB modems. However, this match won't find serial modems.
    }
    
    /*! @function IOServiceGetMatchingServices
        @abstract Look up registered IOService objects that match a matching dictionary.
        @discussion This is the preferred method of finding IOService objects currently registered by IOKit. IOServiceAddNotification can also supply this information and install a notification of new IOServices. The matching information used in the matching dictionary may vary depending on the class of service being looked up.
        @param masterPort The master port obtained from IOMasterPort().
        @param matching A CF dictionary containing matching information, of which one reference is consumed by this function. IOKitLib can contruct matching dictionaries for common criteria with helper functions such as IOServiceMatching, IOOpenFirmwarePathMatching.
        @param existing An iterator handle is returned on success, and should be released by the caller when the iteration is finished.
        @result A kern_return_t error code. */

    kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch, matchingServices);    
    if (KERN_SUCCESS != kernResult)
    {
        //printf("IOServiceGetMatchingServices returned %d\n", kernResult);
		goto exit;
    }
        
exit:
    return kernResult;
}

/***********************************************************************
*
* GetPortPath(int port,
*				io_iterator_t serialPortIterator, 
*				char *bsdPath, 
*				CFIndex maxPathSize)			- Get Path to port
*
*	INPUT: 	port				- Port # to open (0 based)
*			serialPortIterator	- pointer to linked list of port
*			bsdPath				- Return port path here
*			maxPathSize			- Max length of bsdPath
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Given an iterator across a set of ports, return the BSD path to the first one.
// If no ports are found the path name is set to an empty string.
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize)
{
    io_object_t		modemService;
    kern_return_t	kernResult = KERN_FAILURE;
    Boolean			modemFound = false;
    
    // Initialize the returned path
    *bsdPath = '\0';
    
    // Iterate across all modems found. In this example, use port to count the correct path
    
    while ((modemService = IOIteratorNext(serialPortIterator)) && !modemFound)
    {
    	if( port == 0 )
    	{
	        CFTypeRef	bsdPathAsCFString;

		// Get the callout device's path (/dev/cu.xxxxx). The callout device should almost always be
		// used: the dialin device (/dev/tty.xxxxx) would be used when monitoring a serial port for
		// incoming calls, e.g. a fax listener.
		
			bsdPathAsCFString = IORegistryEntryCreateCFProperty(modemService,
	                                                            CFSTR(kIOCalloutDeviceKey),
	                                                            kCFAllocatorDefault,
	                                                            0);
	        if (bsdPathAsCFString)
	        {
	            Boolean result;
	            
	            // Convert the path from a CFString to a C (NUL-terminated) string for use
		    	// with the POSIX open() call.
		    
		    	result = CFStringGetCString((const CFStringRef)bsdPathAsCFString,
	                                        (char *)bsdPath,
	                                        (long)maxPathSize, 
	                                        kCFStringEncodingASCII);
	            CFRelease(bsdPathAsCFString);
	            
	            if (result)
		    	{
	                //printf("BSD path: %s", bsdPath);
	                modemFound = true;
	                kernResult = KERN_SUCCESS;
	            }
	        }
	  	}
	  	else
	  	{
	  		port = port - 1;		// Next port
	  	}

	  	// Release the io_service_t now that we are done with it.
		
		(void) IOObjectRelease(modemService);
    }
        
    return kernResult;
}

/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = (int)strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->path,portstr);
	
	// (2) Now walk back through the portstr and find the first "/"
	// from there to the end is the name of the port
	
	ptr = portstr;
	ptr += len;			// Move to the end of the string
	// Scan backwards through the string
	for( ; ptr >= portstr; ptr-- )
	{
		if( *ptr == '/' )
			break;				// We have found the left end of the name
								// Actually 1 less than that see below
	}
	
	ptr++;						// Move to start of name
								// Now build the name holder
	len = (int)strlen(ptr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE(pl->path);	// FAILURE
		MEMFREE(pl);
		return( NULL );
	}
	strcpy(pl->name,ptr);
	
	// (3) All done return filled out struct
	
	return( pl );
}


/***********************************************************************
*
* int GetPortState(PORT_HANDLE *h)	- Get state value from tty
*
*	INPUT: 	xh		- Handle to open serial port
*
*	OUTPUT:	Terminal state as per bits in sys/ioctl.h
*			Return 0 if bad state
*
************************************************************************/

static int GetPortState( PORT_HANDLE *h )
{
    int state = 0;
	int val;
	
	// (2) Read state
	
	val = ioctl(h->fd,TIOCMGET,&state);
	//val = ioctl(h->fd,TIOCMODG,&state);
	if( val < 0 )
	{
		state = 0;		// ERROR
	}
	return( state );
}

/***********************************************************************
*
* int SetPortState(int state, PORT_HANDLE *h)	- Set state value for tty
*
*	INPUT:  state   - Set TTY state to this
*			xh		- Handle to open serial port
*
*	OUTPUT:	Return 1 if OK, 0 if fail
*
************************************************************************/

static int SetPortState( int state,PORT_HANDLE *h )
{
    int rtnval = 0;
	int val;
	
	// (1) Is it valid ?
	
	// (2) Set state
	
	val = ioctl(h->fd,TIOCMSET,&state);
	if( val >= 0 )
	{
		rtnval = 1;		// SUCCESS
	}
	return( rtnval );
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<






























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/OSX/bsdserial.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         BSDSERIAL		- Serial Support on a BSD system
*
*  Description:         This will list,open,setup and close serial ports
*						on BSD
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*						 2 Dec 2005 Change OpenPort slightly and add
*									DTR,CTS functions
*						16-Apr-2009	Change list ports to show modems
*						17 Apr 2009 Add working StatPort() 
*
*		USER-API	PORT_LIST *ListPorts(int modems)
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <paths.h>
#include <termios.h>
#include <sysexits.h>
#include <sys/param.h>
#include <sys/select.h>
#include <sys/time.h>
#include <time.h>
#include <CoreFoundation/CoreFoundation.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/serial/IOSerialKeys.h>
#include <IOKit/IOBSD.h>
#include "tgtypes.h"

#ifndef BSDSERIAL_H
#define BSDSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						char *path;				// Path of port
						char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					struct termios orig;	// Original values
					struct termios run;		// Run values
					int fd;					// Port descriptor
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(int modems);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE
PORT_HANDLE *OpenPortbyName( char *name,
						int modem,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( int dwelltime,PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

// *** PORT MISC

int CTSPort( PORT_HANDLE *h );				// Read CTS
int DCDPort( PORT_HANDLE *h );				// Read DCD

void DTRPort( int flag,PORT_HANDLE *h);		// Set DTR
void RTSPort( int flag,PORT_HANDLE *h);		// Set RTS

#endif
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<






























































































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/PC/pcserial.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         PCSERIAL		- Serial Support on a PC system
*
*  Description:         This will list,open,setup and close serial ports
*						on Windows
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "pcserial.h"

// **** LOCAL FUNCTIONS ***
#ifdef SQUIGGLE
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices);
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize);
#endif

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl);

#ifndef false
#define false	0
#define true	1
#endif

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts()	- Get a list of SERIAL RS-232 ports
*
*	INPUT:NONE
*
*	OUTPUT:	Linked list of port data
*			NULL if none
*
*****************************************************************/

PORT_LIST *ListPorts(void)
{
	PORT_LIST *base = NULL;
	char portstr[256];
	int pcount = 0;
	PORT_LIST *pl;
	PORT_LIST *last = NULL;
	int i;
	
	// (1) Build a dummy port list with 9 ports
	
	for( i=1; i<10; i++ )
	{
		pl = NEW_PORT_LIST;
		
		sprintf(portstr,"\\\\.\\COM%d",i);
		pl = add_port_names(portstr,pl);
		if( pl == NULL )
			break;				// FAILURE
			
		// (3) Now add the element to the end of the list
		// Two cases:
		//		base == NULL	- First element just replace
		//		base != NULL	- Just add after last
		
		if( base == NULL )
		{
			base = pl;
			last = pl;
		}
		else
		{
			last->next = pl;
			last = pl;
		}
		pcount = pcount + 1;
	}
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( base->path );
		if( base->name != NULL )
			MEMFREE( base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	p		- PORT_LIST element
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h = NULL;
	int i;
	
	// (0) Do we have a port list ?
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = INVALID_HANDLE_VALUE;	// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = CreateFile( 	p->name,
			    	GENERIC_READ | GENERIC_WRITE,
				    0,		// Share mode
				    0,		// Security
				    OPEN_EXISTING,
				    FILE_ATTRIBUTE_NORMAL,
				    0);		// Template

	if( h->fd == INVALID_HANDLE_VALUE )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
	if( !GetCommState( h->fd, &(h->original) ) )
	{
		ClosePort( h );
		return( NULL );
	}

	if( !GetCommTimeouts( h->fd, &(h->timeouts) ) )
	{
		ClosePort( h );
		return( NULL );
	}

 	/* (3) Now set things up for our run ( baud etc)
           Get a good DCB to fill out
    */

	if( !GetCommState( h->fd,&(h->current) ) )  // Get current values
	{
		ClosePort( h );
		return( NULL );
	}

    // 29 March 2000 JS.
    // There is something undocumented in the DCB that controls
    // UART word size.  If you use the DCB above with no mod then
    // it will have the default word size, if it's 7 you are SOL
    // since then NOPARITY => EVEN PARITY.
    // What to do well we get the DCB filled out for the current
    // state, then run it through BuildCommDCB which fills out
    // the buad rate parity and stuff + sets the WORD SIZE (somewhere ?)
    // Then we fill in the parameters we want for our "real" use
    // and things are OK.
    // NOTE: I couldn't just use the DCB out of BuildCommDCB and
    //       fill in stuff below.  This failed the SET.  I don't
    //       know why at this point but this is a "fix" for the
    //       parity problem.
    //BuildCommDCB( "38400,n,8,1",&dset );
    // Fix II Found the "undocumented field - ByteSize"
    // Just set that....

    h->current.ByteSize = 8;          		// Set for 8 Bits
	h->current.BaudRate = baud;
	h->current.fBinary = true;				// Set to binary mode
	h->current.fOutxCtsFlow = false;		// No HDW flow control
	h->current.fOutxDsrFlow = false;		// No HDW flow control
	h->current.fDtrControl = DTR_CONTROL_DISABLE;	// DTR low when opened

	h->current.fDsrSensitivity = false;		// No input HDW control
	h->current.fOutX = false;				// No output XON/XOFF
	h->current.fInX = false;				// No input XON/XOFF
	h->current.fNull = false;				// Keep NUL bytes
	h->current.fRtsControl = RTS_CONTROL_DISABLE; // RTS low when opened
	h->current.fAbortOnError = false;		// Keep cranking
    h->current.fParity = true;       		// Set parity
	h->current.Parity = parity;				// Rather obvious
	h->current.StopBits = stop;				// Rather obvious again

	if( !SetCommState( h->fd,&(h->current) ) )
	{
		ClosePort( h );
		return( NULL );
	}

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != INVALID_HANDLE_VALUE )
		{
			SetCommState( h->fd, &(h->original));
			CloseHandle(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}

}
#pragma mark -- PORT I/O API --

//int StatPort( PORT_HANDLE *h );
/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

+ WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
#ifdef SQUIGGLE	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = write(h->fd,buffer,size );
	}
#endif	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
#ifdef SQUIGGLE	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = read(h->fd,buffer,size );
	}
#endif	
	return( rtn );
}

#ifdef SQUIGGLE
#pragma mark -- Support (INTERNAL) --
// ------- Support functions ------- READ OUT PORTS

/***********************************************************************
*
* FindPorts(io_iterator_t *i)	- Find an iterator to serial ports
*
*	INPUT: modem_flag				- TRUE if we are looking for a modem
*			matchingServices		- Fill with iterator to open ports
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Returns an iterator across all known modems. Caller is responsible for
// releasing the iterator when iteration is complete.
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices)
{
    kern_return_t		kernResult; 
    mach_port_t			masterPort;
    CFMutableDictionaryRef	classesToMatch;

/*! @function IOMasterPort
    @abstract Returns the mach port used to initiate communication with IOKit.
    @discussion Functions that don't specify an existing object require the IOKit master port to be passed. 
    @This function obtains that port.
    @param bootstrapPort Pass MACH_PORT_NULL for the default.
    @param masterPort The master port is returned.
    @result A kern_return_t error code. */

    kernResult = IOMasterPort(MACH_PORT_NULL, &masterPort);
    if (KERN_SUCCESS != kernResult)
    {
        printf("IOMasterPort returned %d\n", kernResult);
		goto exit;
    }
        
/*! @function IOServiceMatching
    @abstract Create a matching dictionary that specifies an IOService class match.
    @discussion A very common matching criteria for IOService is based on its class. IOServiceMatching will create a matching dictionary that specifies any IOService of a class, or its subclasses. The class is specified by C-string name.
    @param name The class name, as a const C-string. Class matching is successful on IOService's of this class or any subclass.
    @result The matching dictionary created, is returned on success, or zero on failure. The dictionary is commonly passed to IOServiceGetMatchingServices or IOServiceAddNotification which will consume a reference, otherwise it should be released with CFRelease by the caller. */

    // Serial devices are instances of class IOSerialBSDClient
    classesToMatch = IOServiceMatching(kIOSerialBSDServiceValue);
    if (classesToMatch == NULL)
    {
        printf("IOServiceMatching returned a NULL dictionary.\n");
    }
    else {
/*!
	@function CFDictionarySetValue
	Sets the value of the key in the dictionary.
	@param theDict The dictionary to which the value is to be set. If this
		parameter is not a valid mutable CFDictionary, the behavior is
		undefined. If the dictionary is a fixed-capacity dictionary and
		it is full before this operation, and the key does not exist in
		the dictionary, the behavior is undefined.
	@param key The key of the value to set into the dictionary. If a key 
		which matches this key is already present in the dictionary, only
		the value is changed ("add if absent, replace if present"). If
		no key matches the given key, the key-value pair is added to the
		dictionary. If added, the key is retained by the dictionary,
		using the retain callback provided
		when the dictionary was created. If the key is not of the sort
		expected by the key retain callback, the behavior is undefined.
	@param value The value to add to or replace into the dictionary. The value
		is retained by the dictionary using the retain callback provided
		when the dictionary was created, and the previous value if any is
		released. If the value is not of the sort expected by the
		retain or release callbacks, the behavior is undefined.
*/
		if( modem_flag )
		{
			// LOOK for MODEM HERE
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDModemType));
		}
		else
		{
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDRS232Type));
		}
		
        // Each serial device object has a property with key
        // kIOSerialBSDTypeKey and a value that is one of kIOSerialBSDAllTypes,
        // kIOSerialBSDModemType, or kIOSerialBSDRS232Type. You can experiment with the
        // matching by changing the last parameter in the above call to CFDictionarySetValue.
        
        // As shipped, this sample is only interested in modems,
        // so add this property to the CFDictionary we're matching on. 
        // This will find devices that advertise themselves as modems,
        // such as built-in and USB modems. However, this match won't find serial modems.
    }
    
    /*! @function IOServiceGetMatchingServices
        @abstract Look up registered IOService objects that match a matching dictionary.
        @discussion This is the preferred method of finding IOService objects currently registered by IOKit. IOServiceAddNotification can also supply this information and install a notification of new IOServices. The matching information used in the matching dictionary may vary depending on the class of service being looked up.
        @param masterPort The master port obtained from IOMasterPort().
        @param matching A CF dictionary containing matching information, of which one reference is consumed by this function. IOKitLib can contruct matching dictionaries for common criteria with helper functions such as IOServiceMatching, IOOpenFirmwarePathMatching.
        @param existing An iterator handle is returned on success, and should be released by the caller when the iteration is finished.
        @result A kern_return_t error code. */

    kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch, matchingServices);    
    if (KERN_SUCCESS != kernResult)
    {
        //printf("IOServiceGetMatchingServices returned %d\n", kernResult);
		goto exit;
    }
        
exit:
    return kernResult;
}

/***********************************************************************
*
* GetPortPath(int port,
*				io_iterator_t serialPortIterator, 
*				char *bsdPath, 
*				CFIndex maxPathSize)			- Get Path to port
*
*	INPUT: 	port				- Port # to open (0 based)
*			serialPortIterator	- pointer to linked list of port
*			bsdPath				- Return port path here
*			maxPathSize			- Max length of bsdPath
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Given an iterator across a set of ports, return the BSD path to the first one.
// If no ports are found the path name is set to an empty string.
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize)
{
    io_object_t		modemService;
    kern_return_t	kernResult = KERN_FAILURE;
    Boolean			modemFound = false;
    
    // Initialize the returned path
    *bsdPath = '\0';
    
    // Iterate across all modems found. In this example, use port to count the correct path
    
    while ((modemService = IOIteratorNext(serialPortIterator)) && !modemFound)
    {
    	if( port == 0 )
    	{
	        CFTypeRef	bsdPathAsCFString;

		// Get the callout device's path (/dev/cu.xxxxx). The callout device should almost always be
		// used: the dialin device (/dev/tty.xxxxx) would be used when monitoring a serial port for
		// incoming calls, e.g. a fax listener.
		
			bsdPathAsCFString = IORegistryEntryCreateCFProperty(modemService,
	                                                            CFSTR(kIOCalloutDeviceKey),
	                                                            kCFAllocatorDefault,
	                                                            0);
	        if (bsdPathAsCFString)
	        {
	            Boolean result;
	            
	            // Convert the path from a CFString to a C (NUL-terminated) string for use
		    	// with the POSIX open() call.
		    
		    	result = CFStringGetCString((const CFStringRef)bsdPathAsCFString,
	                                        (char *)bsdPath,
	                                        (long)maxPathSize, 
	                                        kCFStringEncodingASCII);
	            CFRelease(bsdPathAsCFString);
	            
	            if (result)
		    	{
	                //printf("BSD path: %s", bsdPath);
	                modemFound = true;
	                kernResult = KERN_SUCCESS;
	            }
	        }
	  	}
	  	else
	  	{
	  		port = port - 1;		// Next port
	  	}

	  	// Release the io_service_t now that we are done with it.
		
		(void) IOObjectRelease(modemService);
    }
        
    return kernResult;
}

#endif


/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->path,portstr);
	
	// (2) Just do it again for the name
	
	len = strlen(portstr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->name,portstr);
		
	// (3) All done return filled out struct
	
	return( pl );
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/PC/pcserial.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         PCSERIAL		- Serial Support on a PC system
*
*  Description:         This will list,open,setup and close serial ports
*						on Windows
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <io.h>
#include "tgtypes.h"

#ifndef PCSERIAL_H
#define PCSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						char *path;				// Path of port
						char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					//struct termios orig;	// Original values
					//struct termios run;		// Run values
					HANDLE fd;					// Port descriptor
					
					// And other data
					
					DCB	original;
					DCB	current;
					COMMTIMEOUTS timeouts;	
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(void);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE

PORT_HANDLE *OpenPort( PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

#endif
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<










































































































































































































Deleted gReceiverS/gReceiverS/SERIAL/tgtypes.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//*****************************************************************************
/*

    Header Name: TGTYPES.H


    Description: Tollgrade Data Types for DMU/TEM

	Convert to MAC version 9 September 2000


    Notes: This contains the data types used throughout the DMU/TEM
    products.  These types our own definitions of simple data types
    as well as system-wide structure definitions, unions, etc.

*/
//*****************************************************************************
#ifndef __TGT_H_INCLUDED
#define __TGT_H_INCLUDED

#define _MT

//***
// SIMPLE TYPE DEFINITIONS
//***
typedef unsigned char           TG_BYTE;
typedef unsigned char           TG_UINT8;
typedef char                    TG_CHAR;
typedef unsigned short          TG_WORD;
typedef TG_WORD                 TG_UINT16;
typedef short                   TG_INT16;
typedef unsigned long           TG_DWORD;
typedef TG_DWORD                TG_UINT32;
typedef int                     TG_INT32;
typedef short                   TG_BOOL;
typedef float                   TG_FLOAT;
typedef double                  TG_DOUBLE;
typedef short                   TG_STATUS_VAL;   // generic status (ie. result code)
// MAC DEFS
#ifndef pointer
#define pointer					void *
#endif

typedef pointer					TG_HANDLE;
typedef TG_UINT32				TG_pthread_mutex_t;
typedef TG_UINT32				TG_task_id;
#ifndef bool
//typedef char					bool;
#endif


// Record used to convert enum name to value and vice versa
typedef struct
{
    int     inEnumVal;
    TG_CHAR *  pchEnumName;

} ENUM_NAME_REC;

#ifndef NULL
#define NULL	0
#endif
#define POINTER    pointer   // generic pointer type
#define PLTL       pointer  
//***
// Macro definition of simple pointer
//***
#define PTR                     (void *)

//***
// TG_BOOL VALUES
//***
#ifndef TRUE
#define TRUE    0x01
#endif
#ifndef FALSE
#define FALSE   0x00
#endif

#ifndef MEMALLOC
#define MEMALLOC(x)		calloc(1,x)
#define MEMFREE(x)		free(x)
#endif

#endif // __TGT_H_INCLUDED
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<










































































































































































Deleted gReceiverS/gReceiverS/gCorder/gCorderInterface.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
//
//  gCorderInterface.c
//  MacProto
//
//  Created by Jim on 22/11/2014.
//  Copyright (c) 2014 Pandora Products. All rights reserved.
//
//	23-Nov-2014	Change to have presence thread
//	15-Dec-2014 Harden code for failures

#include "gCorderInterface.h"

#if 0
	#pragma mark -
	#pragma mark Data
#endif

#define PROMPT	"gCorder>"

static int getPrompt(gCORD *gc);		// Look for 'gCorder>"
static int getDump(gCORD *gc);			// Get and store dumped data

static void *gCorderScan(void *param);	// Scanning thread

#if 0
	#pragma mark -
	#pragma mark External API
#endif

/*******************************
 Initialize gCorder intenals

 @param port	- Port name

 @return gc if OK, NULL if failure
 ******************************/

gCORD *gCorderInit( char *name )
{
	gCORD *gc;
	int val;
	
	// First build return object
	
	gc = (gCORD *)MEMALLOC(sizeof(gCORD));
	if( gc != NULL )
	{
		// Now open the port
		// Get port list
		
		gc->sp = OpenPortbyName(name,1, 38400, SER_STOP_ONE, SER_PARITY_NONE);
		if( gc->sp != NULL )
		{
			// Ok now start up scanning thread
			
			gc->scanRun = 1;
			val = pthread_mutex_init(&(gc->scanLock),NULL);
			val = pthread_create(&(gc->scanThread),NULL,gCorderScan,gc);
		}
		else
		{
			MEMFREE(gc);
			gc = NULL;
		}
	}
	
	return gc;
}

/*******************************
 Issue a command look for ** error or success

 @param cmd		gCorder command string with <cr>
 @param gc		gCorder data structure
 @param flag	If true then don't lock mutex
				done outside of routine

 @return 0 success <> 0 failure
 ******************************/
 
int gCorderCommand(char *cmd,gCORD *gc,int flag)
{
	int rtnval = -1;	// Failure
	int len = (int)strlen(cmd);
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run, if flag false
		
		if( flag == 0)
			n = pthread_mutex_lock(&gc->scanLock);
		
		// (3) Send the command
		
		n = WritePort(cmd, len, gc->sp);
		if( n == len )
		{
			// Sent ok look for response
			
			rtnval = getPrompt(gc);
		}
		
		// (4) Unlock the mutex
		
		if( flag == 0)
			n = pthread_mutex_unlock(&gc->scanLock);
	}
	
	return rtnval;
}

/*******************************
 Arm the gCorder - This has no following prompt
 
 @param gc  gCorder data structure

 @return 0 if success -1 if failure
 ******************************/

int gCorderArm(gCORD *gc)
{
	int rtnval = -1;	// Failure
	char cmd[2];
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run
		
		n = pthread_mutex_lock(&gc->scanLock);
		
		// (3) Send the command
		
		cmd[0] = 'C';
		cmd[1] = '\r';
		n = WritePort(cmd, 2, gc->sp);
		if( n == 2 )
		{
			rtnval = 0;
		}

		// (4) Unlock the mutex
		
		n = pthread_mutex_unlock(&gc->scanLock);
	}
	
	return rtnval;
}

/*******************************
 Read out dumped data int buffer
 
 @param gc  gCorder data structure

 @return 0 if success -1 if not
 ******************************/
int gCorderDump(gCORD *gc)
{
	int rtnval = -1;	// Failure
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run
		
		n = pthread_mutex_lock(&gc->scanLock);
	
		// (3) Send the command, don't lock mutex
		
		rtnval = gCorderCommand("D\r",gc,1);
		if( rtnval == 0 )
		{
			// Read out the dumped data
			
			rtnval = getDump(gc);
		}
		
		// (4) Unlock the mutex
		
		n = pthread_mutex_unlock(&gc->scanLock);

	}
	
	return rtnval;
}

/*******************************
 Close Down gCorder use
 
@param gc  gCorder data structure

 ******************************/
void gCorderClose(gCORD *gc)
{
	// (1) Is this trip necessary ?
	
	if( gc != NULL )
	{
		// Shut down scanning
		
		if( gc->scanThread != 0 )
		{
			gc->scanRun = 0;
			pthread_mutex_destroy(&gc->scanLock);
			pthread_join( gc->scanThread, NULL);
		}
		
		// Close the serial port
	
		ClosePort(gc->sp);
		
		// Remove the structure
		
		MEMFREE( gc );
	}
}

#if 0
	#pragma mark -
	#pragma mark Internal API
#endif

/*******************************
 Look for gCorder> prompt
 
 @param gc  gCorder data structure

 @return 0 found, -1 not found
 
 NOTE: This is inside the mutex
 ******************************/
static int getPrompt(gCORD *gc)
{
	int rtnval = -1;
	char buffer[8];
	char testBuf[16];
	int len,i;
	int state = 0;
	
	strcpy(testBuf,PROMPT);	// Get test string
	len = (int)strlen(testBuf);
	
	// Stay in this loop ~ 5 seconds
	// exit with either time out
	// gcorder> found
	
	for( i=0; i<40; i++)
	{
		if( StatPort(100,gc->sp) )	// Wait 100 ms for char
		{
			ReadPort(buffer, 1, gc->sp);
			if( buffer[0] == PROMPT[state])
			{
				// Next Character found move state
				state++;
				if( state >= len )
				{
					// Success all found
					rtnval = 0;
					break;
				}
			}
			else
				state = 0;	// Nope try again
		}
		else
			break;		// No data
	}
	
	return rtnval;
}

/*******************************
 Get the dumped data into dumpbuf
 
 @param gc  gCorder data structure

 @return 0 success <>0 bad
 NOTE: This is inside the mutex
 ******************************/
static int getDump(gCORD *gc)
{
	int rtnval = -1;
	int n;
	char *ptr;
	
	// Set up for run
	
	ptr = (char *)&gc->dumpBuffer[0];
	gc->dbSize = 0;
	
	// Stay in loop till buffer fills or it times out
	// exit with either time out
	// gcorder> found
	
	while( gc->dbSize < DUMP_SZ )
	{
		n = StatPort(100,gc->sp);
		if( n > 0 )
		{
			n = ReadPort(ptr, n, gc->sp);
			ptr += n;	// Move to next slot
			gc->dbSize += n;
		}
		else
		{
			rtnval = 0;
			break;		// No more data
		}
	}
	
	return rtnval;
}

#if 0
	#pragma mark -
	#pragma mark SCAN Thread
#endif

//******************************
/*******************************
 Scanner thread, scan for gCorder

 @param params gCORD data structure
 
 This thread sets/unsets the gCorderPresent flag

 @return NULL
 ******************************/
void *gCorderScan(void *params)
{
	gCORD *gc = (gCORD *)params;
	char buffer[32];
	int n,val;
	
	// Loop while scanRun is true
	
	while( gc->scanRun )
	{
		// First step try to lock the mutex
		// if already locked then just mark as
		// present and wait for next scan
		
		n = pthread_mutex_trylock(&gc->scanLock);
		if( n == 0 )
		{
			// Got the port so test
			// Send out <cr> and look for "gCorder>" string
	
			buffer[0] = '\r';
			n = WritePort(buffer,1,gc->sp);
			if( n == 1 )
			{
				// Success so far ....
				// Now look for prompt
		
				val = getPrompt(gc);
				if( val == 0 )
					gc->gCorderPresent = 1;
				else
					gc->gCorderPresent = 0;
			}
			
			pthread_mutex_unlock(&gc->scanLock);
		}

		// Wait a while and test again
		
		sleep(2);	// Run every 2 seconds
	}
	
	return NULL;
}


<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<




























































































































































































































































































































































































































































































































































































































































































































































































Deleted gReceiverS/gReceiverS/gCorder/gCorderInterface.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  gCorderInterface.h
//  MacProto
//
//  Created by Jim on 22/11/2014.
//  Copyright (c) 2014 Pandora Products. All rights reserved.
//

#ifndef __MacProto__gCorderInterface__
#define __MacProto__gCorderInterface__

#include <stdio.h>
#include <pthread.h>
#include "bsdserial.h"

#define DUMP_SZ	10000

typedef struct {
					PORT_HANDLE *sp;
					char dumpBuffer[DUMP_SZ];
					int dbSize;
	
					// Device Scanner
					int scanRun;
					pthread_mutex_t	scanLock;
					pthread_t scanThread;
	
					int gCorderPresent;
				} gCORD;


gCORD *gCorderInit( char *name );
int gCorderCommand( char *cmd,gCORD *gc,int flag );
int gCorderDump(gCORD *gc);
void gCorderClose(gCORD *gc);

#endif /* defined(__MacProto__gCorderInterface__) */
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<










































































Changes to gReceiverS/gReceiverS/gReceiverS-Bridging-Header.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  gCorderInterface-Bridging-Header.h
//  gReceiverS
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

#ifndef gCorderInterface_Bridging_Header_h
#define gCorderInterface_Header_h

#include "gCorderInterface.h"

#endif /* cliinput_Bridging_Header_h */









|




1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  gCorderInterface-Bridging-Header.h
//  gReceiverS
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

#ifndef gCorderInterface_Bridging_Header_h
#define gCorderInterface_Bridging_Header_h

#include "gCorderInterface.h"

#endif /* cliinput_Bridging_Header_h */
Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/project.pbxproj.
















































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		389BE73F1C22DA0C0024AA93 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389BE73E1C22DA0C0024AA93 /* AppDelegate.swift */; };
		389BE7411C22DA0C0024AA93 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 389BE7401C22DA0C0024AA93 /* Assets.xcassets */; };
		389BE7441C22DA0C0024AA93 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 389BE7421C22DA0C0024AA93 /* MainMenu.xib */; };
		389BE75B1C22DAFC0024AA93 /* gCorderInterface.c in Sources */ = {isa = PBXBuildFile; fileRef = 389BE74E1C22DAFC0024AA93 /* gCorderInterface.c */; };
		389BE75D1C22DAFC0024AA93 /* bsdserial.c in Sources */ = {isa = PBXBuildFile; fileRef = 389BE7551C22DAFC0024AA93 /* bsdserial.c */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		389BE73B1C22DA0C0024AA93 /* gReceiverS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = gReceiverS.app; sourceTree = BUILT_PRODUCTS_DIR; };
		389BE73E1C22DA0C0024AA93 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
		389BE7401C22DA0C0024AA93 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		389BE7431C22DA0C0024AA93 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
		389BE7451C22DA0C0024AA93 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		389BE74E1C22DAFC0024AA93 /* gCorderInterface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gCorderInterface.c; sourceTree = "<group>"; };
		389BE74F1C22DAFC0024AA93 /* gCorderInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gCorderInterface.h; sourceTree = "<group>"; };
		389BE7551C22DAFC0024AA93 /* bsdserial.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsdserial.c; sourceTree = "<group>"; };
		389BE7561C22DAFC0024AA93 /* bsdserial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bsdserial.h; sourceTree = "<group>"; };
		389BE75A1C22DAFC0024AA93 /* tgtypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tgtypes.h; sourceTree = "<group>"; };
		389BE7621C22DDF60024AA93 /* gReceiverS-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gReceiverS-Bridging-Header.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		389BE7381C22DA0C0024AA93 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		389BE7321C22DA0C0024AA93 = {
			isa = PBXGroup;
			children = (
				389BE73D1C22DA0C0024AA93 /* gReceiverS */,
				389BE74C1C22DAFC0024AA93 /* CFiles */,
				389BE73C1C22DA0C0024AA93 /* Products */,
			);
			sourceTree = "<group>";
		};
		389BE73C1C22DA0C0024AA93 /* Products */ = {
			isa = PBXGroup;
			children = (
				389BE73B1C22DA0C0024AA93 /* gReceiverS.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		389BE73D1C22DA0C0024AA93 /* gReceiverS */ = {
			isa = PBXGroup;
			children = (
				389BE7621C22DDF60024AA93 /* gReceiverS-Bridging-Header.h */,
				389BE73E1C22DA0C0024AA93 /* AppDelegate.swift */,
				389BE7401C22DA0C0024AA93 /* Assets.xcassets */,
				389BE7421C22DA0C0024AA93 /* MainMenu.xib */,
				389BE7451C22DA0C0024AA93 /* Info.plist */,
			);
			path = gReceiverS;
			sourceTree = "<group>";
		};
		389BE74C1C22DAFC0024AA93 /* CFiles */ = {
			isa = PBXGroup;
			children = (
				389BE74D1C22DAFC0024AA93 /* gCorder */,
				389BE7501C22DAFC0024AA93 /* SERIAL */,
			);
			name = CFiles;
			path = gReceiverS/CFiles;
			sourceTree = "<group>";
		};
		389BE74D1C22DAFC0024AA93 /* gCorder */ = {
			isa = PBXGroup;
			children = (
				389BE74E1C22DAFC0024AA93 /* gCorderInterface.c */,
				389BE74F1C22DAFC0024AA93 /* gCorderInterface.h */,
			);
			path = gCorder;
			sourceTree = "<group>";
		};
		389BE7501C22DAFC0024AA93 /* SERIAL */ = {
			isa = PBXGroup;
			children = (
				389BE7541C22DAFC0024AA93 /* OSX */,
				389BE75A1C22DAFC0024AA93 /* tgtypes.h */,
			);
			path = SERIAL;
			sourceTree = "<group>";
		};
		389BE7541C22DAFC0024AA93 /* OSX */ = {
			isa = PBXGroup;
			children = (
				389BE7551C22DAFC0024AA93 /* bsdserial.c */,
				389BE7561C22DAFC0024AA93 /* bsdserial.h */,
			);
			path = OSX;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		389BE73A1C22DA0C0024AA93 /* gReceiverS */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 389BE7481C22DA0C0024AA93 /* Build configuration list for PBXNativeTarget "gReceiverS" */;
			buildPhases = (
				389BE7371C22DA0C0024AA93 /* Sources */,
				389BE7381C22DA0C0024AA93 /* Frameworks */,
				389BE7391C22DA0C0024AA93 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = gReceiverS;
			productName = gReceiverS;
			productReference = 389BE73B1C22DA0C0024AA93 /* gReceiverS.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		389BE7331C22DA0C0024AA93 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0720;
				LastUpgradeCheck = 0720;
				ORGANIZATIONNAME = "Pandora,Inc";
				TargetAttributes = {
					389BE73A1C22DA0C0024AA93 = {
						CreatedOnToolsVersion = 7.2;
					};
				};
			};
			buildConfigurationList = 389BE7361C22DA0C0024AA93 /* Build configuration list for PBXProject "gReceiverS" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 389BE7321C22DA0C0024AA93;
			productRefGroup = 389BE73C1C22DA0C0024AA93 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				389BE73A1C22DA0C0024AA93 /* gReceiverS */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		389BE7391C22DA0C0024AA93 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				389BE7411C22DA0C0024AA93 /* Assets.xcassets in Resources */,
				389BE7441C22DA0C0024AA93 /* MainMenu.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		389BE7371C22DA0C0024AA93 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				389BE75B1C22DAFC0024AA93 /* gCorderInterface.c in Sources */,
				389BE75D1C22DAFC0024AA93 /* bsdserial.c in Sources */,
				389BE73F1C22DA0C0024AA93 /* AppDelegate.swift in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		389BE7421C22DA0C0024AA93 /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				389BE7431C22DA0C0024AA93 /* Base */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		389BE7461C22DA0C0024AA93 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "-";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.10;
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
			};
			name = Debug;
		};
		389BE7471C22DA0C0024AA93 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "-";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.10;
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = macosx;
			};
			name = Release;
		};
		389BE7491C22DA0C0024AA93 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverS/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverS;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_OBJC_BRIDGING_HEADER = "gReceiverS-Bridging-Header.h";
			};
			name = Debug;
		};
		389BE74A1C22DA0C0024AA93 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				COMBINE_HIDPI_IMAGES = YES;
				INFOPLIST_FILE = gReceiverS/Info.plist;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
				PRODUCT_BUNDLE_IDENTIFIER = com.pandora.gReceiverS;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SWIFT_OBJC_BRIDGING_HEADER = "gReceiverS-Bridging-Header.h";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		389BE7361C22DA0C0024AA93 /* Build configuration list for PBXProject "gReceiverS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				389BE7461C22DA0C0024AA93 /* Debug */,
				389BE7471C22DA0C0024AA93 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		389BE7481C22DA0C0024AA93 /* Build configuration list for PBXNativeTarget "gReceiverS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				389BE7491C22DA0C0024AA93 /* Debug */,
				389BE74A1C22DA0C0024AA93 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 389BE7331C22DA0C0024AA93 /* Project object */;
}
Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/project.xcworkspace/contents.xcworkspacedata.














>
>
>
>
>
>
>
1
2
3
4
5
6
7
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
   version = "1.0">
   <FileRef
      location = "self:gReceiverS.xcodeproj">
   </FileRef>
</Workspace>
Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/project.xcworkspace/xcuserdata/jim.xcuserdatad/UserInterfaceState.xcuserstate.

cannot compute difference between binary files

Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist.














































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
   type = "1"
   version = "2.0">
   <Breakpoints>
      <BreakpointProxy
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
         <BreakpointContent
            shouldBeEnabled = "Yes"
            ignoreCount = "0"
            continueAfterRunningActions = "No"
            filePath = "gReceiverS/AppDelegate.swift"
            timestampString = "472047856.385958"
            startingColumnNumber = "9223372036854775807"
            endingColumnNumber = "9223372036854775807"
            startingLineNumber = "47"
            endingLineNumber = "47"
            landmarkName = "applicationDidFinishLaunching(_:)"
            landmarkType = "5">
         </BreakpointContent>
      </BreakpointProxy>
   </Breakpoints>
</Bucket>
Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcschemes/gReceiverS.xcscheme.






















































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "0720"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "389BE73A1C22DA0C0024AA93"
               BuildableName = "gReceiverS.app"
               BlueprintName = "gReceiverS"
               ReferencedContainer = "container:gReceiverS.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES">
      <Testables>
      </Testables>
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "389BE73A1C22DA0C0024AA93"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
      <AdditionalOptions>
      </AdditionalOptions>
   </TestAction>
   <LaunchAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      debugServiceExtension = "internal"
      allowLocationSimulation = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "389BE73A1C22DA0C0024AA93"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
      <AdditionalOptions>
      </AdditionalOptions>
   </LaunchAction>
   <ProfileAction
      buildConfiguration = "Release"
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      debugDocumentVersioning = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "389BE73A1C22DA0C0024AA93"
            BuildableName = "gReceiverS.app"
            BlueprintName = "gReceiverS"
            ReferencedContainer = "container:gReceiverS.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>
Added gReceiverS/gReceiverS/gReceiverS.xcodeproj/xcuserdata/jim.xcuserdatad/xcschemes/xcschememanagement.plist.












































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>SchemeUserState</key>
	<dict>
		<key>gReceiverS.xcscheme</key>
		<dict>
			<key>orderHint</key>
			<integer>0</integer>
		</dict>
	</dict>
	<key>SuppressBuildableAutocreation</key>
	<dict>
		<key>389BE73A1C22DA0C0024AA93</key>
		<dict>
			<key>primary</key>
			<true/>
		</dict>
	</dict>
</dict>
</plist>
Added gReceiverS/gReceiverS/gReceiverS/AppDelegate.swift.




















































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
//
//  AppDelegate.swift
//  gReceiverS
//
//  Created by Jim on 17/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

import Cocoa
import Foundation
import IOKit
import AppKit

enum SENSOR_STATE: Int {
				case READY
				case ARMED
				case DATA
}

var gcord: UnsafeMutablePointer<gCORD> = nil;
var connected: Bool						= false
var first_connect: Bool					= true
var state: SENSOR_STATE					= .READY
var listSet: Bool						= false


@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

	@IBOutlet weak var window: NSWindow!

	//GUI Display
	@IBOutlet weak var portSelector: NSComboBox!
	@IBOutlet weak var timeStepField: NSTextField!
	@IBOutlet weak var gRangeField: NSMatrix!
	@IBOutlet weak var triggerField: NSTextField!
	@IBOutlet weak var statusText: NSTextField!

	// GUI Control
	@IBOutlet weak var armButton: NSButton!
	@IBOutlet weak var readButton: NSButton!
	@IBOutlet weak var displayButton: NSButton!
	@IBOutlet weak var saveButton: NSButton!

	func applicationDidFinishLaunching(aNotification: NSNotification)
	{
		var list: UnsafeMutablePointer<PORT_LIST> = nil

		// Get a list of the serial ports and fill it out

		list = ListPorts(1)
		if( list != nil )
		{
			var pl:UnsafeMutablePointer<PORT_LIST> = list;

			// Clear out the port selector combobox & fill it

			portSelector.removeAllItems()
			while( pl != nil )
			{
				let str: String = String.fromCString(pl.memory.name)!

				portSelector.addItemWithObjectValue(str)
				pl = pl.memory.next
				listSet = true
			}
		}
	}

	func applicationWillTerminate(aNotification: NSNotification) {
		// Insert code here to tear down your application
	}

	// Close app when window closes
	@objc func applicationShouldTerminateAfterLastWindowClosed(sender: NSApplication) -> Bool
	{
		return true;
	}

	// Actions

	@IBAction func portSet(sender: AnyObject) {
	}

	@IBAction func gRange(sender: AnyObject) {
	}

	@IBAction func timeStep(sender: AnyObject) {
	}

	@IBAction func triggerValue(sender: AnyObject) {
	}

	@IBAction func armSensor(sender: AnyObject) {
	}

	@IBAction func readSensor(sender: AnyObject) {
	}

	@IBAction func displayData(sender: AnyObject) {
	}

	@IBAction func saveData(sender: AnyObject) {
	}
}

Added gReceiverS/gReceiverS/gReceiverS/Assets.xcassets/AppIcon.appiconset/Contents.json.




















































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
  "images" : [
    {
      "idiom" : "mac",
      "size" : "16x16",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "16x16",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "32x32",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "32x32",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "128x128",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "128x128",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "256x256",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "256x256",
      "scale" : "2x"
    },
    {
      "idiom" : "mac",
      "size" : "512x512",
      "scale" : "1x"
    },
    {
      "idiom" : "mac",
      "size" : "512x512",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}
Added gReceiverS/gReceiverS/gReceiverS/Base.lproj/MainMenu.xib.


























































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="9531" systemVersion="14F1509" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
    <dependencies>
        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/>
    </dependencies>
    <objects>
        <customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
            <connections>
                <outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq"/>
            </connections>
        </customObject>
        <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
        <customObject id="-3" userLabel="Application" customClass="NSObject"/>
        <customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModule="gReceiverS" customModuleProvider="target">
            <connections>
                <outlet property="armButton" destination="dve-sN-QtH" id="YkG-bQ-eNU"/>
                <outlet property="displayButton" destination="MR2-ZG-w33" id="yZt-A1-Eld"/>
                <outlet property="gRangeField" destination="57U-Da-dfp" id="RHU-9e-Rzg"/>
                <outlet property="portSelector" destination="hJQ-A8-cnT" id="qzW-FW-ckZ"/>
                <outlet property="readButton" destination="0sN-kx-O1I" id="TgD-pK-l7i"/>
                <outlet property="saveButton" destination="jpa-iV-us7" id="QGt-SI-XDM"/>
                <outlet property="statusText" destination="NMd-gG-iCq" id="i3f-v6-vIa"/>
                <outlet property="timeStepField" destination="R6q-2e-dx2" id="xNs-0O-b0P"/>
                <outlet property="triggerField" destination="eqU-VR-lV9" id="ooC-iE-rBM"/>
            </connections>
        </customObject>
        <customObject id="YLy-65-1bz" customClass="NSFontManager"/>
        <menu title="Main Menu" systemMenu="main" id="xoK-LV-ddD">
            <items>
                <menuItem title="gReceiver" id="pxq-3e-dVx">
                    <modifierMask key="keyEquivalentModifierMask"/>
                    <menu key="submenu" title="gReceiver" systemMenu="apple" id="rkb-dH-h3W">
                        <items>
                            <menuItem title="About gReceiver" id="t4M-XN-h8c">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <connections>
                                    <action selector="orderFrontStandardAboutPanel:" target="-1" id="vD8-bG-sNu"/>
                                </connections>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="ckS-sb-rrk"/>
                            <menuItem title="Preferences…" keyEquivalent="," id="kYY-ih-QyW"/>
                            <menuItem isSeparatorItem="YES" id="x0X-M4-R5P"/>
                            <menuItem title="Services" id="wel-h4-Whh">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <menu key="submenu" title="Services" systemMenu="services" id="leB-TK-Uam"/>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="3Nq-Rc-yzw"/>
                            <menuItem title="Hide gReceiver" keyEquivalent="h" id="Brc-c5-glW">
                                <connections>
                                    <action selector="hide:" target="-1" id="gXR-IZ-dz2"/>
                                </connections>
                            </menuItem>
                            <menuItem title="Hide Others" keyEquivalent="h" id="npd-ga-dqE">
                                <modifierMask key="keyEquivalentModifierMask" option="YES" command="YES"/>
                                <connections>
                                    <action selector="hideOtherApplications:" target="-1" id="w5d-PF-eSq"/>
                                </connections>
                            </menuItem>
                            <menuItem title="Show All" id="MrS-77-hCv">
                                <modifierMask key="keyEquivalentModifierMask"/>
                                <connections>
                                    <action selector="unhideAllApplications:" target="-1" id="UhK-uS-9Bj"/>
                                </connections>
                            </menuItem>
                            <menuItem isSeparatorItem="YES" id="fw7-ie-7OG"/>
                            <menuItem title="Quit gReceiver" keyEquivalent="q" id="dgn-hj-Uee">
                                <connections>
                                    <action selector="terminate:" target="-1" id="HfD-KN-iPP"/>
                                </connections>
                            </menuItem>
                        </items>
                    </menu>
                </menuItem>
            </items>
        </menu>
        <window title="gReceiver" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="default" id="3cm-3W-7NJ">
            <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
            <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
            <rect key="contentRect" x="335" y="390" width="365" height="212"/>
            <rect key="screenRect" x="0.0" y="0.0" width="1600" height="877"/>
            <view key="contentView" id="cPq-Fp-0YX">
                <rect key="frame" x="0.0" y="0.0" width="365" height="212"/>
                <autoresizingMask key="autoresizingMask"/>
                <subviews>
                    <comboBox verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hJQ-A8-cnT">
                        <rect key="frame" x="35" y="156" width="210" height="26"/>
                        <comboBoxCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" borderStyle="bezel" drawsBackground="YES" completes="NO" numberOfVisibleItems="5" id="Hcw-st-9ZT">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                            <objectValues>
                                <string>Item 1</string>
                                <string>Item 2</string>
                                <string>Item 3</string>
                            </objectValues>
                        </comboBoxCell>
                        <connections>
                            <action selector="portSet:" target="Voe-Tx-rLC" id="JfL-a8-PbQ"/>
                        </connections>
                    </comboBox>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="LeE-I4-axd">
                        <rect key="frame" x="35" y="188" width="84" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="gCorder Port" id="ff3-DX-dIV">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rKe-es-Y7e">
                        <rect key="frame" x="42" y="130" width="52" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="gRange" id="eMW-sa-Y2N">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qAP-JV-ziC">
                        <rect key="frame" x="128" y="130" width="100" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Time Step (ms)" id="vvk-kR-bGs">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TQm-9U-mw6">
                        <rect key="frame" x="126" y="69" width="100" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Status" id="a2U-H9-DSq">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="7V1-E6-ukK">
                        <rect key="frame" x="247" y="130" width="75" height="17"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Trigger %" id="1yh-J3-poI">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <matrix verticalHuggingPriority="750" fixedFrame="YES" allowsEmptySelection="NO" autorecalculatesCellSize="YES" translatesAutoresizingMaskIntoConstraints="NO" id="57U-Da-dfp">
                        <rect key="frame" x="44" y="64" width="78" height="58"/>
                        <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                        <size key="cellSize" width="42" height="18"/>
                        <size key="intercellSpacing" width="4" height="2"/>
                        <buttonCell key="prototype" type="radio" title="Radio" imagePosition="left" alignment="left" inset="2" id="JnO-zp-46t">
                            <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <cells>
                            <column>
                                <buttonCell type="radio" title="2 g" imagePosition="left" alignment="left" state="on" tag="1" inset="2" id="GLd-UH-QdZ">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                                <buttonCell type="radio" title="4 g" imagePosition="left" alignment="left" inset="2" id="MWV-lK-cmd">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                                <buttonCell type="radio" title="8 g" imagePosition="left" alignment="left" inset="2" id="6ni-7S-jec">
                                    <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
                                    <font key="font" metaFont="system"/>
                                </buttonCell>
                            </column>
                        </cells>
                        <connections>
                            <action selector="gRange:" target="Voe-Tx-rLC" id="hCL-Kx-dZB"/>
                        </connections>
                    </matrix>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="R6q-2e-dx2">
                        <rect key="frame" x="130" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" title="10" placeholderString="" drawsBackground="YES" id="CLM-9q-Bkm">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                        <connections>
                            <action selector="timeStep:" target="Voe-Tx-rLC" id="k21-fm-sqf"/>
                        </connections>
                    </textField>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CW2-WF-srd">
                        <rect key="frame" x="249" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" placeholderString="10" drawsBackground="YES" id="HTY-J5-OuB">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eqU-VR-lV9">
                        <rect key="frame" x="249" y="100" width="96" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" title="10" placeholderString="" drawsBackground="YES" id="xo1-se-J04">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                        <connections>
                            <action selector="triggerValue:" target="Voe-Tx-rLC" id="fKi-UL-2vo"/>
                        </connections>
                    </textField>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="0sN-kx-O1I">
                        <rect key="frame" x="102" y="17" width="73" height="32"/>
                        <buttonCell key="cell" type="push" title="Read" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="yuF-cL-dLW">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="readSensor:" target="Voe-Tx-rLC" id="Ldl-Gf-Jfv"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dve-sN-QtH">
                        <rect key="frame" x="14" y="17" width="82" height="32"/>
                        <buttonCell key="cell" type="push" title="Arm" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="Vox-F0-Csu">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="armSensor:" target="Voe-Tx-rLC" id="XB3-js-BGP"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="jpa-iV-us7">
                        <rect key="frame" x="269" y="17" width="71" height="32"/>
                        <buttonCell key="cell" type="push" title="Save" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="nXd-sP-dfh">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="saveData:" target="Voe-Tx-rLC" id="O2n-pf-dcX"/>
                        </connections>
                    </button>
                    <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="MR2-ZG-w33">
                        <rect key="frame" x="183" y="17" width="86" height="32"/>
                        <buttonCell key="cell" type="push" title="Display" bezelStyle="rounded" alignment="center" enabled="NO" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="vcM-1V-tRV">
                            <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                            <font key="font" metaFont="system"/>
                        </buttonCell>
                        <connections>
                            <action selector="displayData:" target="Voe-Tx-rLC" id="GW8-AH-mWk"/>
                        </connections>
                    </button>
                    <textField verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NMd-gG-iCq">
                        <rect key="frame" x="180" y="64" width="165" height="22"/>
                        <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="q4n-hD-Pz0">
                            <font key="font" metaFont="system"/>
                            <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                        </textFieldCell>
                    </textField>
                </subviews>
            </view>
            <point key="canvasLocation" x="433.5" y="282"/>
        </window>
    </objects>
</document>
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/Linux/linserial.c.




































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         LINSERIAL		- Serial Support on a Linux system
*
*  Description:         This will list,open,setup and close serial ports
*						on Linux
*
*  Author:              Jim Schimpf
*
*  Revision History:	1 Dec 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( int psn,
*											PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "linserial.h"

// **** LOCAL FUNCTIONS ***

static int GetPortState( PORT_HANDLE *h );
static int SetPortState( int state,PORT_HANDLE *h );

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts()	- Get a list of SERIAL RS-232 ports
*
*	INPUT:NONE
*
*	OUTPUT:	NULL
*	This is not supported in Linux now so just return NULL
*
*****************************************************************/

PORT_LIST *ListPorts(void)
{
	PORT_LIST *base = NULL;
	
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( base->path );
		if( base->name != NULL )
			MEMFREE( base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( int psn,PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	psn		- Psn in list (base = 1)
*			p		- PORT_LIST 
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *base,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h;
	int i;
	int error;
	PORT_LIST *p;
	
	// (0) Find the slot in the port list
	
	for( i=0, p = base; i<psn-1 && p != NULL ; i++ )
	{
		p = p->next;
	}
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = -1;				// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = open(p->path, O_RDWR | O_NOCTTY | O_NONBLOCK);
	if( h->fd == -1 )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	ioctl(h->fd, TIOCEXCL);	// Set for exclusive OPEN
	
	// (2a) Get current values fron port
	// Save originals and copy into run area
    if (tcgetattr(h->fd, &(h->orig)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	memcpy(&(h->run),&(h->orig),sizeof(struct termios));
	
    // (3) Set options to baud rate, 8 bits, parity, & size no flow
    // Init flags then set
	
	//*********** CONTROL FLAG SET
    h->run.c_cflag = 0;
	
	if( parity == SER_PARITY_NONE )
		h->run.c_cflag |= CS8;			// 8 Bit words
	else
	{
		h->run.c_cflag |= CS7;			// 7 Bit words with parity
		h->run.c_cflag |= PARENB;		// Parity enable
		if( parity == SER_PARITY_ODD )
			h->run.c_cflag |= PARODD;	// ODD parity
	}
		
	if( stop == SER_STOP_TWO )
		h->run.c_cflag |= CSTOPB;		// Two stop bits (1 by default)
		
    h->run.c_cflag |= CREAD;		// Enable input
    h->run.c_cflag |= CLOCAL;		// Ignore modem cntl lines
    
	//************* INPUT FLAGS SET
    h->run.c_iflag = 0;
    h->run.c_iflag |= IGNBRK;
	if( parity != SER_PARITY_NONE )
		h->run.c_iflag |= INPCK;	// Parity check
    
	//************* LINE FLAGS SET
    h->run.c_lflag = 0;				// No echo input
    
	//************* OPTION CHARACTERS
    for( i=0; i<NCCS; i++ )			// REF:JS12052003 Change to clear all option chars
        h->run.c_cc[i] = 0;
        
    h->run.c_cc[VMIN] = 0;			// Non blocking input
    h->run.c_cc[VTIME] = 0;			// REF:JS12052003 Set to not wait
									// for either min char or time

    printf("Options set now: CFLAG [%X] IFLAG [%X] OFLAG [%X]\n",
                    (int)h->run.c_cflag,
                    (int)h->run.c_iflag,
                    (int)h->run.c_oflag);
    // (4) Set the baud rates, if you try this in reverse order
    // then the c_flag -> 0 and will wipe out the baud rates
    // (i.e. baudrate = 0)
    
	error = cfsetospeed( &(h->run),baud );
	error = cfsetispeed( &(h->run),baud );

    // (5) Cause the new options to take effect immediately.
    if (tcsetattr(h->fd, TCSANOW, &(h->run)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
    // (6) Print the new input and output baud rates & return the results
    
    printf("Input baud rate changed to %d\n", (int) cfgetispeed(&(h->run)));
    printf("Output baud rate changed to %d\n", (int) cfgetospeed(&(h->run)));

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != -1 )
		{
			tcsetattr(h->fd, TCSANOW, &(h->orig));
			close(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}
}
#pragma mark -- PORT I/O API --

/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

int WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = write(h->fd,buffer,size );
	}
	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = read(h->fd,buffer,size );
	}
	
	return( rtn );
}

#pragma mark -- PORT MISC --
/***********************************************************************
*
* int CTSPort( PORT_HANDLE *h ) - Return CTS state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - CTS not asserted
*
************************************************************************/

int CTSPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int cts;
	
	// Extract RTS state
	
	if( state & TIOCM_CTS )
	{
		cts = 1;
	}
	else
	{
		cts = 0;
	}
	
	return( cts );
}

/***********************************************************************
*
* void DTRPort( int flag,PORT_HANDLE *h) - Set DTR state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove DTR
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void DTRPort( int dtr,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( dtr )
	{
		state = state | TIOCM_DTR;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_DTR;		// Clear DTR
	}
	
	SetPortState( state,h );
}

#pragma mark -- Support (INTERNAL) --

/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->path,portstr);
	
	// (2) Now walk back through the portstr and find the first "/"
	// from there to the end is the name of the port
	
	ptr = portstr;
	ptr += len;			// Move to the end of the string
	// Scan backwards through the string
	for( ; ptr >= portstr; ptr-- )
	{
		if( *ptr == '/' )
			break;				// We have found the left end of the name
								// Actually 1 less than that see below
	}
	
	ptr++;						// Move to start of name
								// Now build the name holder
	len = strlen(ptr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE(pl->path);	// FAILURE
		MEMFREE(pl);
		return( NULL );
	}
	strcpy(pl->name,ptr);
	
	// (3) All done return filled out struct
	
	return( pl );
}


/***********************************************************************
*
* int GetPortState(PORT_HANDLE *h)	- Get state value from tty
*
*	INPUT: 	xh		- Handle to open serial port
*
*	OUTPUT:	Terminal state as per bits in sys/ioctl.h
*			Return 0 if bad state
*
************************************************************************/

static int GetPortState( PORT_HANDLE *h )
{
    int state = 0;
	int val;
	
	// (2) Read state
	
	val = ioctl(h->fd,TIOCMGET,&state);
	if( val < 0 )
	{
		state = 0;		// ERROR
	}
	return( state );
}

/***********************************************************************
*
* int SetPortState(int state, PORT_HANDLE *h)	- Set state value for tty
*
*	INPUT:  state   - Set TTY state to this
*			xh		- Handle to open serial port
*
*	OUTPUT:	Return 1 if OK, 0 if fail
*
************************************************************************/

static int SetPortState( int state,PORT_HANDLE *h )
{
    int rtnval = 0;
	int val;
	
	// (1) Is it valid ?
	
	// (2) Set state
	
	val = ioctl(h->fd,TIOCMSET,&state);
	if( val >= 0 )
	{
		rtnval = 1;		// SUCCESS
	}
	return( rtnval );
}
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/Linux/linserial.h.






























































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         LINSERIAL		- Serial Support on a Linux system
*
*  Description:         This will list,open,setup and close serial ports
*						on Linux
*
*  Author:              Jim Schimpf
*
*  Revision History:	1 Dec 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()				- NOP here
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <paths.h>
#include <termios.h>
#include <sysexits.h>
#include <sys/param.h>
#include <sys/select.h>
#include <sys/time.h>
#include <time.h>
#include "tgtypes.h"

#ifndef LINSERIAL_H
#define LINSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						char *path;				// Path of port
						char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					struct termios orig;	// Original values
					struct termios run;		// Run values
					int fd;					// Port descriptor
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(void);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

// *** PORT MISC

int CTSPort( PORT_HANDLE *h );				// Read CTS
void DTRPort( int flag,PORT_HANDLE *h);		// Set DTR

#endif
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/OSX/bsdserial.c.






























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         BSDSERIAL		- Serial Support on a BSD system
*
*  Description:         This will list,open,setup and close serial ports
*						on BSD
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*						 2 Dec 2005 Convert the open to find the value in the
*									port list & add DTR, CTS functions
*						16-Apr-2009	Add ability to use modem ports
*						17 Apr 2009 Add working StatPort() 
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( int psn,
*											PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "bsdserial.h"

// **** LOCAL FUNCTIONS ***

static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices);
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize);
static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl);
static int GetPortState( PORT_HANDLE *h );
static int SetPortState( int state,PORT_HANDLE *h );

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts(int modems)	- Get a list of SERIAL RS-232 ports
*
*	INPUT:modems	- If <> 0 then look for modems too
*
*	OUTPUT:	Linked list of port data
*			NULL if none
*
*****************************************************************/

PORT_LIST *ListPorts(int modems)
{
	char portstr[256];
	io_iterator_t matchingServices;
	int pcount = 0;
	PORT_LIST *base = NULL;
	PORT_LIST *pl;
	PORT_LIST *last = NULL;
	
	// (1) Now loop through available ports and build a list
	
	while( 1 )
	{
		// (2) Build an iterator for our list of ports
		
		if( FindPorts( modems,&matchingServices ) != KERN_SUCCESS )
		{
			break;		// Failure - no ports
		}

		if( GetPortPath(pcount,
					matchingServices,
					portstr,
					sizeof(portstr)) != KERN_SUCCESS )
		{
			break;			// Done....
		}
		
		// (2a) We have a port here so build a PORT_LIST from the 
		// string we just received
		
		pl = NEW_PORT_LIST;
		if( pl == NULL )
			break;				// FAILURE !!!
			
		pl = add_port_names(portstr,pl);
		if( pl == NULL )
			break;				// FAILURE
			
		// (3) Now add the element to the end of the list
		// Two cases:
		//		base == NULL	- First element just replace
		//		base != NULL	- Just add after last
		
		if( base == NULL )
		{
			base = pl;
			last = pl;
		}
		else
		{
			last->next = pl;
			last = pl;
		}
		pcount = pcount + 1;
	}
	
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( (void *)base->path );
		if( base->name != NULL )
			MEMFREE((void *) base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( char *name
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	name	- Name of port in list
*			modem	- 1 if modems are included
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPortbyName( const char *name,
						int modem,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_LIST *list,*pl;
	PORT_HANDLE *ph = NULL;
	int psn;
	
	// (1) Get the port list and use it
	//		to match our name
	
	list = ListPorts(modem);
	if( list != NULL )
	{
		// Now try to match our name
		
		pl = list;
		psn = 0;
		while( pl != NULL )
		{
			if( strcmp(pl->name,name) == 0 )
				break;
			
			// Try next
			
			psn++;
			pl = pl->next;
		}
		
		// If found try to open
		if(pl != NULL )
		{
			ph = OpenPort(psn+1, list, baud, stop, parity);
			
			// Tidy up and return
			
			FreePorts(list);
		}
	}
	
	return ph;
}

/****************************************************************
*
*  PORT_HANDLE *OpenPort( int psn,PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	psn		- Psn in list (base = 1)
*			p		- PORT_LIST 
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *base,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h;
	int i;
	int error;
	PORT_LIST *p;
	
	// (0) Find the slot in the port list
	
	for( i=0, p = base; i<psn-1 && p != NULL ; i++ )
	{
		p = p->next;
	}
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = -1;				// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = (int)strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = (int)strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = open(p->path, O_RDWR | O_NOCTTY | O_NONBLOCK);
	if( h->fd == -1 )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	ioctl(h->fd, TIOCEXCL);	// Set for exclusive OPEN
	
	// (2a) Get current values fron port
	// Save originals and copy into run area
    if (tcgetattr(h->fd, &(h->orig)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	memcpy(&(h->run),&(h->orig),sizeof(struct termios));
	
    // (3) Set options to baud rate, 8 bits, parity, & size no flow
    // Init flags then set
	
	//*********** CONTROL FLAG SET
    h->run.c_cflag = 0;
	
	if( parity == SER_PARITY_NONE )
		h->run.c_cflag |= CS8;			// 8 Bit words
	else
	{
		h->run.c_cflag |= CS7;			// 7 Bit words with parity
		h->run.c_cflag |= PARENB;		// Parity enable
		if( parity == SER_PARITY_ODD )
			h->run.c_cflag |= PARODD;	// ODD parity
	}
		
	if( stop == SER_STOP_TWO )
		h->run.c_cflag |= CSTOPB;		// Two stop bits (1 by default)
		
    h->run.c_cflag |= CREAD;		// Enable input
    h->run.c_cflag |= CLOCAL;		// Ignore modem cntl lines
    
	//************* INPUT FLAGS SET
    h->run.c_iflag = 0;
    h->run.c_iflag |= IGNBRK;
	if( parity != SER_PARITY_NONE )
		h->run.c_iflag |= INPCK;	// Parity check
    
	//************* LINE FLAGS SET
    h->run.c_lflag = 0;				// No echo input
    
	//************* OPTION CHARACTERS
    for( i=0; i<NCCS; i++ )			// REF:JS12052003 Change to clear all option chars
        h->run.c_cc[i] = 0;
        
    h->run.c_cc[VMIN] = 0;			// Non blocking input
    h->run.c_cc[VTIME] = 0;			// REF:JS12052003 Set to not wait
									// for either min char or time

    printf("Options set now: CFLAG [%X] IFLAG [%X] OFLAG [%X]\n",
                    (int)h->run.c_cflag,
                    (int)h->run.c_iflag,
                    (int)h->run.c_oflag);
    // (4) Set the baud rates, if you try this in reverse order
    // then the c_flag -> 0 and will wipe out the baud rates
    // (i.e. baudrate = 0)
    
	error = cfsetospeed( &(h->run),baud );
	error = cfsetispeed( &(h->run),baud );

    // (5) Cause the new options to take effect immediately.
    if (tcsetattr(h->fd, TCSANOW, &(h->run)) == -1)
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
    // (6) Print the new input and output baud rates & return the results
    
    printf("Input baud rate changed to %d\n", (int) cfgetispeed(&(h->run)));
    printf("Output baud rate changed to %d\n", (int) cfgetospeed(&(h->run)));

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != -1 )
		{
			tcsetattr(h->fd, TCSANOW, &(h->orig));
			close(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}
}
#pragma mark -- PORT I/O API --

/***********************************************************************
*
* int StatPort( PORT_HANDLE *h )	- Data present on port ?
*
*	INPUT:	dwelltime	- # MS to scan for data 0 => no wait
*			h			- To this port
*
*	OUTPUT:	1	- Data present for read, 0 no data
*
************************************************************************/

int StatPort( int dwelltime,PORT_HANDLE *h )
{
	int rtnval = 0;
	fd_set scan;
	struct timeval seltime; // Select timeout time
	
	// (1) Build scan array and set up time
	
	FD_ZERO( &scan );
	FD_SET( h->fd,&scan );
	seltime.tv_sec = dwelltime / 1000;
	seltime.tv_usec = (dwelltime - (1000 * (int)seltime.tv_sec)) * 1000;
	
	// (2) Do a select on the socket
	
	rtnval = select(h->fd+1,&scan,NULL,NULL,&seltime);
	if( rtnval < 0 )
		rtnval = 0;		// If failure return 0
		
	return( rtnval );
}

/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

int WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = (int)write(h->fd,buffer,size );
	}
	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = (int)read(h->fd,buffer,size );
	}
	
	return( rtn );
}

#pragma mark -- PORT MISC --
/***********************************************************************
*
* int CTSPort( PORT_HANDLE *h ) - Return CTS state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - CTS not asserted
*
************************************************************************/

int CTSPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int cts;
	
	// Extract RTS state
		
	if( state & TIOCM_CTS )
	{
		cts = 1;
	}
	else
	{
		cts = 0;
	}
	
	return( cts );
}

/***********************************************************************
*
* int DCDPort( PORT_HANDLE *h ) - Return DCD state
*
*	INPUT: h	- Port handle
*
*	OUTPUT:	1 = CTS asserted, 0 - DCD not asserted
*
************************************************************************/

int DCDPort( PORT_HANDLE *h )
{
	int state = GetPortState( h );		// Get current state
	int dcd;
	
	// Extract RTS state
		
	if( state & TIOCM_CTS )
	{
		dcd = 1;
	}
	else
	{
		dcd = 0;
	}
	
	return( dcd );
}


/***********************************************************************
*
* void DTRPort( int flag,PORT_HANDLE *h) - Set DTR state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove DTR
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void DTRPort( int flag,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( flag )
	{
		state = state | TIOCM_DTR;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_DTR;		// Clear DTR
	}
	
	SetPortState( state,h );
}

/***********************************************************************
*
* void RTSPort( int flag,PORT_HANDLE *h) - Set RTS state
*
*	INPUT:	flag	- 1 -> Assert DTR, 0 Remove RTS
*			h		- Port to work on
*
*	OUTPUT:	NONE
*
************************************************************************/

void RTSPort( int flag,PORT_HANDLE *h)
{
	int state = GetPortState( h );		// Get current state
	
	// (1) Set or CLEAR
	
	if( flag )
	{
		state = state | TIOCM_RTS;		// Assert DTR
	}
	else
	{
		state = state & ~TIOCM_RTS;		// Clear DTR
	}
	
	SetPortState( state,h );
}


#pragma mark -- Support (INTERNAL) --
// ------- Support functions ------- READ OUT PORTS

/***********************************************************************
*
* FindPorts(io_iterator_t *i)	- Find an iterator to serial ports
*
*	INPUT: modem_flag				- TRUE if we are looking for a modem
*			matchingServices		- Fill with iterator to open ports
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Returns an iterator across all known modems. Caller is responsible for
// releasing the iterator when iteration is complete.
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices)
{
    kern_return_t		kernResult; 
    mach_port_t			masterPort;
    CFMutableDictionaryRef	classesToMatch;

/*! @function IOMasterPort
    @abstract Returns the mach port used to initiate communication with IOKit.
    @discussion Functions that don't specify an existing object require the IOKit master port to be passed. 
    @This function obtains that port.
    @param bootstrapPort Pass MACH_PORT_NULL for the default.
    @param masterPort The master port is returned.
    @result A kern_return_t error code. */

    kernResult = IOMasterPort(MACH_PORT_NULL, &masterPort);
    if (KERN_SUCCESS != kernResult)
    {
        printf("IOMasterPort returned %d\n", kernResult);
		goto exit;
    }
        
/*! @function IOServiceMatching
    @abstract Create a matching dictionary that specifies an IOService class match.
    @discussion A very common matching criteria for IOService is based on its class. IOServiceMatching will create a matching dictionary that specifies any IOService of a class, or its subclasses. The class is specified by C-string name.
    @param name The class name, as a const C-string. Class matching is successful on IOService's of this class or any subclass.
    @result The matching dictionary created, is returned on success, or zero on failure. The dictionary is commonly passed to IOServiceGetMatchingServices or IOServiceAddNotification which will consume a reference, otherwise it should be released with CFRelease by the caller. */

    // Serial devices are instances of class IOSerialBSDClient
    classesToMatch = IOServiceMatching(kIOSerialBSDServiceValue);
    if (classesToMatch == NULL)
    {
        printf("IOServiceMatching returned a NULL dictionary.\n");
    }
    else {
/*!
	@function CFDictionarySetValue
	Sets the value of the key in the dictionary.
	@param theDict The dictionary to which the value is to be set. If this
		parameter is not a valid mutable CFDictionary, the behavior is
		undefined. If the dictionary is a fixed-capacity dictionary and
		it is full before this operation, and the key does not exist in
		the dictionary, the behavior is undefined.
	@param key The key of the value to set into the dictionary. If a key 
		which matches this key is already present in the dictionary, only
		the value is changed ("add if absent, replace if present"). If
		no key matches the given key, the key-value pair is added to the
		dictionary. If added, the key is retained by the dictionary,
		using the retain callback provided
		when the dictionary was created. If the key is not of the sort
		expected by the key retain callback, the behavior is undefined.
	@param value The value to add to or replace into the dictionary. The value
		is retained by the dictionary using the retain callback provided
		when the dictionary was created, and the previous value if any is
		released. If the value is not of the sort expected by the
		retain or release callbacks, the behavior is undefined.
*/
		if( modem_flag )
		{
			// LOOK for MODEM HERE
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 //CFSTR(kIOSerialBSDModemType));
							 CFSTR(kIOSerialBSDAllTypes));
		}
		else
		{
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDRS232Type));
		}
		
        // Each serial device object has a property with key
        // kIOSerialBSDTypeKey and a value that is one of kIOSerialBSDAllTypes,
        // kIOSerialBSDModemType, or kIOSerialBSDRS232Type. You can experiment with the
        // matching by changing the last parameter in the above call to CFDictionarySetValue.
        
        // As shipped, this sample is only interested in modems,
        // so add this property to the CFDictionary we're matching on. 
        // This will find devices that advertise themselves as modems,
        // such as built-in and USB modems. However, this match won't find serial modems.
    }
    
    /*! @function IOServiceGetMatchingServices
        @abstract Look up registered IOService objects that match a matching dictionary.
        @discussion This is the preferred method of finding IOService objects currently registered by IOKit. IOServiceAddNotification can also supply this information and install a notification of new IOServices. The matching information used in the matching dictionary may vary depending on the class of service being looked up.
        @param masterPort The master port obtained from IOMasterPort().
        @param matching A CF dictionary containing matching information, of which one reference is consumed by this function. IOKitLib can contruct matching dictionaries for common criteria with helper functions such as IOServiceMatching, IOOpenFirmwarePathMatching.
        @param existing An iterator handle is returned on success, and should be released by the caller when the iteration is finished.
        @result A kern_return_t error code. */

    kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch, matchingServices);    
    if (KERN_SUCCESS != kernResult)
    {
        //printf("IOServiceGetMatchingServices returned %d\n", kernResult);
		goto exit;
    }
        
exit:
    return kernResult;
}

/***********************************************************************
*
* GetPortPath(int port,
*				io_iterator_t serialPortIterator, 
*				char *bsdPath, 
*				CFIndex maxPathSize)			- Get Path to port
*
*	INPUT: 	port				- Port # to open (0 based)
*			serialPortIterator	- pointer to linked list of port
*			bsdPath				- Return port path here
*			maxPathSize			- Max length of bsdPath
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Given an iterator across a set of ports, return the BSD path to the first one.
// If no ports are found the path name is set to an empty string.
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize)
{
    io_object_t		modemService;
    kern_return_t	kernResult = KERN_FAILURE;
    Boolean			modemFound = false;
    
    // Initialize the returned path
    *bsdPath = '\0';
    
    // Iterate across all modems found. In this example, use port to count the correct path
    
    while ((modemService = IOIteratorNext(serialPortIterator)) && !modemFound)
    {
    	if( port == 0 )
    	{
	        CFTypeRef	bsdPathAsCFString;

		// Get the callout device's path (/dev/cu.xxxxx). The callout device should almost always be
		// used: the dialin device (/dev/tty.xxxxx) would be used when monitoring a serial port for
		// incoming calls, e.g. a fax listener.
		
			bsdPathAsCFString = IORegistryEntryCreateCFProperty(modemService,
	                                                            CFSTR(kIOCalloutDeviceKey),
	                                                            kCFAllocatorDefault,
	                                                            0);
	        if (bsdPathAsCFString)
	        {
	            Boolean result;
	            
	            // Convert the path from a CFString to a C (NUL-terminated) string for use
		    	// with the POSIX open() call.
		    
		    	result = CFStringGetCString((const CFStringRef)bsdPathAsCFString,
	                                        (char *)bsdPath,
	                                        (long)maxPathSize, 
	                                        kCFStringEncodingASCII);
	            CFRelease(bsdPathAsCFString);
	            
	            if (result)
		    	{
	                //printf("BSD path: %s", bsdPath);
	                modemFound = true;
	                kernResult = KERN_SUCCESS;
	            }
	        }
	  	}
	  	else
	  	{
	  		port = port - 1;		// Next port
	  	}

	  	// Release the io_service_t now that we are done with it.
		
		(void) IOObjectRelease(modemService);
    }
        
    return kernResult;
}

/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = (int)strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy((char *)pl->path,portstr);
	
	// (2) Now walk back through the portstr and find the first "/"
	// from there to the end is the name of the port
	
	ptr = portstr;
	ptr += len;			// Move to the end of the string
	// Scan backwards through the string
	for( ; ptr >= portstr; ptr-- )
	{
		if( *ptr == '/' )
			break;				// We have found the left end of the name
								// Actually 1 less than that see below
	}
	
	ptr++;						// Move to start of name
								// Now build the name holder
	len = (int)strlen(ptr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE((void *)pl->path);	// FAILURE
		MEMFREE(pl);
		return( NULL );
	}
	strcpy((char *)pl->name,ptr);
	
	// (3) All done return filled out struct
	
	return( pl );
}


/***********************************************************************
*
* int GetPortState(PORT_HANDLE *h)	- Get state value from tty
*
*	INPUT: 	xh		- Handle to open serial port
*
*	OUTPUT:	Terminal state as per bits in sys/ioctl.h
*			Return 0 if bad state
*
************************************************************************/

static int GetPortState( PORT_HANDLE *h )
{
    int state = 0;
	int val;
	
	// (2) Read state
	
	val = ioctl(h->fd,TIOCMGET,&state);
	//val = ioctl(h->fd,TIOCMODG,&state);
	if( val < 0 )
	{
		state = 0;		// ERROR
	}
	return( state );
}

/***********************************************************************
*
* int SetPortState(int state, PORT_HANDLE *h)	- Set state value for tty
*
*	INPUT:  state   - Set TTY state to this
*			xh		- Handle to open serial port
*
*	OUTPUT:	Return 1 if OK, 0 if fail
*
************************************************************************/

static int SetPortState( int state,PORT_HANDLE *h )
{
    int rtnval = 0;
	int val;
	
	// (1) Is it valid ?
	
	// (2) Set state
	
	val = ioctl(h->fd,TIOCMSET,&state);
	if( val >= 0 )
	{
		rtnval = 1;		// SUCCESS
	}
	return( rtnval );
}
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/OSX/bsdserial.h.






























































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         BSDSERIAL		- Serial Support on a BSD system
*
*  Description:         This will list,open,setup and close serial ports
*						on BSD
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*						 2 Dec 2005 Change OpenPort slightly and add
*									DTR,CTS functions
*						16-Apr-2009	Change list ports to show modems
*						17 Apr 2009 Add working StatPort() 
*
*		USER-API	PORT_LIST *ListPorts(int modems)
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <paths.h>
#include <termios.h>
#include <sysexits.h>
#include <sys/param.h>
#include <sys/select.h>
#include <sys/time.h>
#include <time.h>
#include <CoreFoundation/CoreFoundation.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/serial/IOSerialKeys.h>
#include <IOKit/IOBSD.h>
#include "tgtypes.h"

#ifndef BSDSERIAL_H
#define BSDSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						const char *path;				// Path of port
						const char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					struct termios orig;	// Original values
					struct termios run;		// Run values
					int fd;					// Port descriptor
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(int modems);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE
PORT_HANDLE *OpenPortbyName( const char *name,
						int modem,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);

PORT_HANDLE *OpenPort( int psn,
						PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( int dwelltime,PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

// *** PORT MISC

int CTSPort( PORT_HANDLE *h );				// Read CTS
int DCDPort( PORT_HANDLE *h );				// Read DCD

void DTRPort( int flag,PORT_HANDLE *h);		// Set DTR
void RTSPort( int flag,PORT_HANDLE *h);		// Set RTS

#endif
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/PC/pcserial.c.
















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         PCSERIAL		- Serial Support on a PC system
*
*  Description:         This will list,open,setup and close serial ports
*						on Windows
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include "pcserial.h"

// **** LOCAL FUNCTIONS ***
#ifdef SQUIGGLE
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices);
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize);
#endif

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl);

#ifndef false
#define false	0
#define true	1
#endif

#pragma mark -- PORT MGMT API --

/****************************************************************
*
*  PORT_LIST *ListPorts()	- Get a list of SERIAL RS-232 ports
*
*	INPUT:NONE
*
*	OUTPUT:	Linked list of port data
*			NULL if none
*
*****************************************************************/

PORT_LIST *ListPorts(void)
{
	PORT_LIST *base = NULL;
	char portstr[256];
	int pcount = 0;
	PORT_LIST *pl;
	PORT_LIST *last = NULL;
	int i;
	
	// (1) Build a dummy port list with 9 ports
	
	for( i=1; i<10; i++ )
	{
		pl = NEW_PORT_LIST;
		
		sprintf(portstr,"\\\\.\\COM%d",i);
		pl = add_port_names(portstr,pl);
		if( pl == NULL )
			break;				// FAILURE
			
		// (3) Now add the element to the end of the list
		// Two cases:
		//		base == NULL	- First element just replace
		//		base != NULL	- Just add after last
		
		if( base == NULL )
		{
			base = pl;
			last = pl;
		}
		else
		{
			last->next = pl;
			last = pl;
		}
		pcount = pcount + 1;
	}
	return( base );
}

/****************************************************************
*
*  void FreePorts(PORT_LIST *base ) - Free port list
*
*	INPUT:	base	- Port list
*
*	OUTPUT:	NONE
*
*****************************************************************/

void FreePorts(PORT_LIST *base )
{
	PORT_LIST *npl;
	
	// (1) Loop through ports and free as seen
	
	while( base != NULL )
	{
		// (2) Save the next for later
		
		npl = base->next;
		
		// (3) Free up the parts
		
		if( base->path != NULL )
			MEMFREE( base->path );
		if( base->name != NULL )
			MEMFREE( base->name );
			
		// (4) Free the main part and move to next
		
		MEMFREE( base );
		base = npl;
	}
}

#pragma mark -- PORT OPEN/CLOSE API --

/****************************************************************
*
*  PORT_HANDLE *OpenPort( PORT_LIST *p,
*						int baud,
*						PORT_STOP stop,
*						PORT_PARITY parity)		- Open a port
*
*	INPUT:	p		- PORT_LIST element
*			baud	- Baud rate desired
*			stop	- # Stop bits (1,2)
*			parity	- NONE/ODD/EVEN
*
*	OUTPUT: Open file handle
*			NULL if failed
*
*****************************************************************/

PORT_HANDLE *OpenPort( PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity)
{
	PORT_HANDLE *h = NULL;
	int i;
	
	// (0) Do we have a port list ?
	
	if( p == NULL )
		return( NULL );
	
	// (1) Create the handle
	
	h = NEW_PORT_HANDLE;
	if( h == NULL )
	{
		return( NULL );		// FAILURE
	}
	h->fd = INVALID_HANDLE_VALUE;	// Set bad descriptor
	
	// (1a) Fill the name and path fields
	
	i = strlen(p->path);
	h->path = (char *)MEMALLOC( i + 1 );
	if( h->path == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->path,p->path);
	
	i = strlen( p->name );
	h->name = (char *)MEMALLOC( i + 1 );
	if( h->name == NULL )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	strcpy(h->name,p->name);
	
	// (2) Try to open the port
	
	h->fd = CreateFile( 	p->name,
			    	GENERIC_READ | GENERIC_WRITE,
				    0,		// Share mode
				    0,		// Security
				    OPEN_EXISTING,
				    FILE_ATTRIBUTE_NORMAL,
				    0);		// Template

	if( h->fd == INVALID_HANDLE_VALUE )
	{
		ClosePort( h );		// FAILURE
		return( NULL );
	}
	
	if( !GetCommState( h->fd, &(h->original) ) )
	{
		ClosePort( h );
		return( NULL );
	}

	if( !GetCommTimeouts( h->fd, &(h->timeouts) ) )
	{
		ClosePort( h );
		return( NULL );
	}

 	/* (3) Now set things up for our run ( baud etc)
           Get a good DCB to fill out
    */

	if( !GetCommState( h->fd,&(h->current) ) )  // Get current values
	{
		ClosePort( h );
		return( NULL );
	}

    // 29 March 2000 JS.
    // There is something undocumented in the DCB that controls
    // UART word size.  If you use the DCB above with no mod then
    // it will have the default word size, if it's 7 you are SOL
    // since then NOPARITY => EVEN PARITY.
    // What to do well we get the DCB filled out for the current
    // state, then run it through BuildCommDCB which fills out
    // the buad rate parity and stuff + sets the WORD SIZE (somewhere ?)
    // Then we fill in the parameters we want for our "real" use
    // and things are OK.
    // NOTE: I couldn't just use the DCB out of BuildCommDCB and
    //       fill in stuff below.  This failed the SET.  I don't
    //       know why at this point but this is a "fix" for the
    //       parity problem.
    //BuildCommDCB( "38400,n,8,1",&dset );
    // Fix II Found the "undocumented field - ByteSize"
    // Just set that....

    h->current.ByteSize = 8;          		// Set for 8 Bits
	h->current.BaudRate = baud;
	h->current.fBinary = true;				// Set to binary mode
	h->current.fOutxCtsFlow = false;		// No HDW flow control
	h->current.fOutxDsrFlow = false;		// No HDW flow control
	h->current.fDtrControl = DTR_CONTROL_DISABLE;	// DTR low when opened

	h->current.fDsrSensitivity = false;		// No input HDW control
	h->current.fOutX = false;				// No output XON/XOFF
	h->current.fInX = false;				// No input XON/XOFF
	h->current.fNull = false;				// Keep NUL bytes
	h->current.fRtsControl = RTS_CONTROL_DISABLE; // RTS low when opened
	h->current.fAbortOnError = false;		// Keep cranking
    h->current.fParity = true;       		// Set parity
	h->current.Parity = parity;				// Rather obvious
	h->current.StopBits = stop;				// Rather obvious again

	if( !SetCommState( h->fd,&(h->current) ) )
	{
		ClosePort( h );
		return( NULL );
	}

	return( h );
}

/****************************************************************
*
*  void ClosePort( PORT_HANDLE *h )	- Close the port
*
*	INPUT:	h	- Close this open port
*
*	OUTPUT: NONE
*
*****************************************************************/

void ClosePort( PORT_HANDLE *h )
{
	// (1) C heck for valid handle
	
	if( h != NULL )
	{
		// (2) If descriptor valid then reset port back to original
		
		if( h->fd != INVALID_HANDLE_VALUE )
		{
			SetCommState( h->fd, &(h->original));
			CloseHandle(h->fd);
		}
		
		// (3) Free up the allocated fields
		
		if( h->path != NULL )
			MEMFREE( h->path );
		if( h->name != NULL )
			MEMFREE( h->name );
		
		// (4) Free the handle
		
		MEMFREE( h );
	}

}
#pragma mark -- PORT I/O API --

//int StatPort( PORT_HANDLE *h );
/***********************************************************************
*
* int WritePort( char *buffer,int size,PORT_HANDLE *h) - Write to a port
*
*	INPUT:	buffer	- Buffer to send
*			size	- # Bytes to send
*			h		- To this port
*
*	OUTPUT:	# bytes written
*
************************************************************************/

+ WritePort( char *buffer,int size,PORT_HANDLE *h)
{
	int rtn = -1;
#ifdef SQUIGGLE	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = write(h->fd,buffer,size );
	}
#endif	
	return( rtn );
}

/***********************************************************************
*
* int ReadPort( char *buffer,int size,PORT_HANDLE *h) - Read from a port
*
*	INPUT:	buffer	- Buffer to read
*			size	- # Bytes to read
*			h		- From this port
*
*	OUTPUT:	# bytes read
*
************************************************************************/

int ReadPort( char *buffer, int size,PORT_HANDLE *h )
{
	int rtn = -1;
#ifdef SQUIGGLE	
	// (1) Good handle ?
	
	if( h != NULL )
	{
		// (2) Ok, so do I/O 
		
		rtn = read(h->fd,buffer,size );
	}
#endif	
	return( rtn );
}

#ifdef SQUIGGLE
#pragma mark -- Support (INTERNAL) --
// ------- Support functions ------- READ OUT PORTS

/***********************************************************************
*
* FindPorts(io_iterator_t *i)	- Find an iterator to serial ports
*
*	INPUT: modem_flag				- TRUE if we are looking for a modem
*			matchingServices		- Fill with iterator to open ports
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Returns an iterator across all known modems. Caller is responsible for
// releasing the iterator when iteration is complete.
static kern_return_t FindPorts(bool modem_flag,io_iterator_t *matchingServices)
{
    kern_return_t		kernResult; 
    mach_port_t			masterPort;
    CFMutableDictionaryRef	classesToMatch;

/*! @function IOMasterPort
    @abstract Returns the mach port used to initiate communication with IOKit.
    @discussion Functions that don't specify an existing object require the IOKit master port to be passed. 
    @This function obtains that port.
    @param bootstrapPort Pass MACH_PORT_NULL for the default.
    @param masterPort The master port is returned.
    @result A kern_return_t error code. */

    kernResult = IOMasterPort(MACH_PORT_NULL, &masterPort);
    if (KERN_SUCCESS != kernResult)
    {
        printf("IOMasterPort returned %d\n", kernResult);
		goto exit;
    }
        
/*! @function IOServiceMatching
    @abstract Create a matching dictionary that specifies an IOService class match.
    @discussion A very common matching criteria for IOService is based on its class. IOServiceMatching will create a matching dictionary that specifies any IOService of a class, or its subclasses. The class is specified by C-string name.
    @param name The class name, as a const C-string. Class matching is successful on IOService's of this class or any subclass.
    @result The matching dictionary created, is returned on success, or zero on failure. The dictionary is commonly passed to IOServiceGetMatchingServices or IOServiceAddNotification which will consume a reference, otherwise it should be released with CFRelease by the caller. */

    // Serial devices are instances of class IOSerialBSDClient
    classesToMatch = IOServiceMatching(kIOSerialBSDServiceValue);
    if (classesToMatch == NULL)
    {
        printf("IOServiceMatching returned a NULL dictionary.\n");
    }
    else {
/*!
	@function CFDictionarySetValue
	Sets the value of the key in the dictionary.
	@param theDict The dictionary to which the value is to be set. If this
		parameter is not a valid mutable CFDictionary, the behavior is
		undefined. If the dictionary is a fixed-capacity dictionary and
		it is full before this operation, and the key does not exist in
		the dictionary, the behavior is undefined.
	@param key The key of the value to set into the dictionary. If a key 
		which matches this key is already present in the dictionary, only
		the value is changed ("add if absent, replace if present"). If
		no key matches the given key, the key-value pair is added to the
		dictionary. If added, the key is retained by the dictionary,
		using the retain callback provided
		when the dictionary was created. If the key is not of the sort
		expected by the key retain callback, the behavior is undefined.
	@param value The value to add to or replace into the dictionary. The value
		is retained by the dictionary using the retain callback provided
		when the dictionary was created, and the previous value if any is
		released. If the value is not of the sort expected by the
		retain or release callbacks, the behavior is undefined.
*/
		if( modem_flag )
		{
			// LOOK for MODEM HERE
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDModemType));
		}
		else
		{
			CFDictionarySetValue(classesToMatch,
                             CFSTR(kIOSerialBSDTypeKey),
							 CFSTR(kIOSerialBSDRS232Type));
		}
		
        // Each serial device object has a property with key
        // kIOSerialBSDTypeKey and a value that is one of kIOSerialBSDAllTypes,
        // kIOSerialBSDModemType, or kIOSerialBSDRS232Type. You can experiment with the
        // matching by changing the last parameter in the above call to CFDictionarySetValue.
        
        // As shipped, this sample is only interested in modems,
        // so add this property to the CFDictionary we're matching on. 
        // This will find devices that advertise themselves as modems,
        // such as built-in and USB modems. However, this match won't find serial modems.
    }
    
    /*! @function IOServiceGetMatchingServices
        @abstract Look up registered IOService objects that match a matching dictionary.
        @discussion This is the preferred method of finding IOService objects currently registered by IOKit. IOServiceAddNotification can also supply this information and install a notification of new IOServices. The matching information used in the matching dictionary may vary depending on the class of service being looked up.
        @param masterPort The master port obtained from IOMasterPort().
        @param matching A CF dictionary containing matching information, of which one reference is consumed by this function. IOKitLib can contruct matching dictionaries for common criteria with helper functions such as IOServiceMatching, IOOpenFirmwarePathMatching.
        @param existing An iterator handle is returned on success, and should be released by the caller when the iteration is finished.
        @result A kern_return_t error code. */

    kernResult = IOServiceGetMatchingServices(masterPort, classesToMatch, matchingServices);    
    if (KERN_SUCCESS != kernResult)
    {
        //printf("IOServiceGetMatchingServices returned %d\n", kernResult);
		goto exit;
    }
        
exit:
    return kernResult;
}

/***********************************************************************
*
* GetPortPath(int port,
*				io_iterator_t serialPortIterator, 
*				char *bsdPath, 
*				CFIndex maxPathSize)			- Get Path to port
*
*	INPUT: 	port				- Port # to open (0 based)
*			serialPortIterator	- pointer to linked list of port
*			bsdPath				- Return port path here
*			maxPathSize			- Max length of bsdPath
*
*	OUTPUT:	KERN_SUCCESS if OK
*
************************************************************************/
// Given an iterator across a set of ports, return the BSD path to the first one.
// If no ports are found the path name is set to an empty string.
static kern_return_t GetPortPath(int port,
								io_iterator_t serialPortIterator, 
								char *bsdPath, 
								CFIndex maxPathSize)
{
    io_object_t		modemService;
    kern_return_t	kernResult = KERN_FAILURE;
    Boolean			modemFound = false;
    
    // Initialize the returned path
    *bsdPath = '\0';
    
    // Iterate across all modems found. In this example, use port to count the correct path
    
    while ((modemService = IOIteratorNext(serialPortIterator)) && !modemFound)
    {
    	if( port == 0 )
    	{
	        CFTypeRef	bsdPathAsCFString;

		// Get the callout device's path (/dev/cu.xxxxx). The callout device should almost always be
		// used: the dialin device (/dev/tty.xxxxx) would be used when monitoring a serial port for
		// incoming calls, e.g. a fax listener.
		
			bsdPathAsCFString = IORegistryEntryCreateCFProperty(modemService,
	                                                            CFSTR(kIOCalloutDeviceKey),
	                                                            kCFAllocatorDefault,
	                                                            0);
	        if (bsdPathAsCFString)
	        {
	            Boolean result;
	            
	            // Convert the path from a CFString to a C (NUL-terminated) string for use
		    	// with the POSIX open() call.
		    
		    	result = CFStringGetCString((const CFStringRef)bsdPathAsCFString,
	                                        (char *)bsdPath,
	                                        (long)maxPathSize, 
	                                        kCFStringEncodingASCII);
	            CFRelease(bsdPathAsCFString);
	            
	            if (result)
		    	{
	                //printf("BSD path: %s", bsdPath);
	                modemFound = true;
	                kernResult = KERN_SUCCESS;
	            }
	        }
	  	}
	  	else
	  	{
	  		port = port - 1;		// Next port
	  	}

	  	// Release the io_service_t now that we are done with it.
		
		(void) IOObjectRelease(modemService);
    }
        
    return kernResult;
}

#endif


/***********************************************************************
*
* PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl) - Add names into struct
*
*	INPUT: 	portstr		- Port path string
*			pl			- Port list struct to have names added
*						NOTE: Struct NEW so all pointers NULL
*
*	OUTPUT:	pl	- Pointer to original pl filled out if OK
*			NULL if failure
*
************************************************************************/

static PORT_LIST *add_port_names(char *portstr,PORT_LIST *pl)
{
	int len;
	char *ptr;
	
	// (1) Get the length and put in the whole path
	
	len = strlen(portstr);
	pl->path = (char *)MEMALLOC(len+1);
	if( pl->path == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->path,portstr);
	
	// (2) Just do it again for the name
	
	len = strlen(portstr);
	pl->name = (char *)MEMALLOC(len+1);
	if( pl->name == NULL )
	{
		MEMFREE( pl );			// FAILURE
		return( NULL );
	}
	strcpy(pl->name,portstr);
		
	// (3) All done return filled out struct
	
	return( pl );
}
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/PC/pcserial.h.










































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//*************************************************************************
/*
    Copyright (c) 2005. Pandora Products. All Rights Reserved.
*/
//*************************************************************************
/*
*  Module Name:         PCSERIAL		- Serial Support on a PC system
*
*  Description:         This will list,open,setup and close serial ports
*						on Windows
*
*  Author:              Jim Schimpf
*
*  Revision History:	21 Jan 2005 Initial version
*
*		USER-API	PORT_LIST *ListPorts()
*					void ListPortsFree( PORT_LIST *l);
*					PORT_HANDLE *OpenPort( PORT_LIST *e,
*											int baud,
*											int stop,
*											int parity);
*					ClosePort( PORT_HANDLE *h );
*					int StatPort( PORT_HANDLE *h );
*					int WritePort( char *data,int size,PORT_HANDLE *h );
*					int ReadPort( char *data,int size,PORT_HANDLE *h );
*/
//************************************************************************

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <io.h>
#include "tgtypes.h"

#ifndef PCSERIAL_H
#define PCSERIAL_H	1

#pragma mark -- Structures --

typedef struct sdummy {
						struct sdummy *next;
						char *path;				// Path of port
						char *name;				// Just the name part of the port
					} PORT_LIST;
					
#define NEW_PORT_LIST		((PORT_LIST *)MEMALLOC(sizeof(PORT_LIST)))

// Parity & Stop bit defs

typedef enum {
				SER_PARITY_NONE,
				SER_PARITY_EVEN,
				SER_PARITY_ODD
			} SER_PORT_PARITY;
			
typedef enum {
				SER_STOP_ONE,
				SER_STOP_TWO
			} SER_PORT_STOP;

typedef struct {
					char *path;
					char *name;
					
					// PORT DATA
					//struct termios orig;	// Original values
					//struct termios run;		// Run values
					HANDLE fd;					// Port descriptor
					
					// And other data
					
					DCB	original;
					DCB	current;
					COMMTIMEOUTS timeouts;	
					
				} PORT_HANDLE;
				
#define NEW_PORT_HANDLE		((PORT_HANDLE *)MEMALLOC(sizeof(PORT_HANDLE)))

#pragma mark -- API --

// **** PORT DETERMINATION ****
PORT_LIST *ListPorts(void);
void FreePorts(PORT_LIST *base );

// **** PORT OPEN/CLOSE

PORT_HANDLE *OpenPort( PORT_LIST *p,
						int baud,
						SER_PORT_STOP stop,
						SER_PORT_PARITY parity);
void ClosePort( PORT_HANDLE *h );

// **** PORT I/O

int StatPort( PORT_HANDLE *h );
int WritePort( char *buffer,int size,PORT_HANDLE *h);
int ReadPort( char *buffer, int size,PORT_HANDLE *h );

#endif
Added gReceiverS/gReceiverS/gReceiverS/CFiles/SERIAL/tgtypes.h.










































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//*****************************************************************************
/*

    Header Name: TGTYPES.H


    Description: Tollgrade Data Types for DMU/TEM

	Convert to MAC version 9 September 2000


    Notes: This contains the data types used throughout the DMU/TEM
    products.  These types our own definitions of simple data types
    as well as system-wide structure definitions, unions, etc.

*/
//*****************************************************************************
#ifndef __TGT_H_INCLUDED
#define __TGT_H_INCLUDED

#define _MT

//***
// SIMPLE TYPE DEFINITIONS
//***
typedef unsigned char           TG_BYTE;
typedef unsigned char           TG_UINT8;
typedef char                    TG_CHAR;
typedef unsigned short          TG_WORD;
typedef TG_WORD                 TG_UINT16;
typedef short                   TG_INT16;
typedef unsigned long           TG_DWORD;
typedef TG_DWORD                TG_UINT32;
typedef int                     TG_INT32;
typedef short                   TG_BOOL;
typedef float                   TG_FLOAT;
typedef double                  TG_DOUBLE;
typedef short                   TG_STATUS_VAL;   // generic status (ie. result code)
// MAC DEFS
#ifndef pointer
#define pointer					void *
#endif

typedef pointer					TG_HANDLE;
typedef TG_UINT32				TG_pthread_mutex_t;
typedef TG_UINT32				TG_task_id;
#ifndef bool
//typedef char					bool;
#endif


// Record used to convert enum name to value and vice versa
typedef struct
{
    int     inEnumVal;
    TG_CHAR *  pchEnumName;

} ENUM_NAME_REC;

#ifndef NULL
#define NULL	0
#endif
#define POINTER    pointer   // generic pointer type
#define PLTL       pointer  
//***
// Macro definition of simple pointer
//***
#define PTR                     (void *)

//***
// TG_BOOL VALUES
//***
#ifndef TRUE
#define TRUE    0x01
#endif
#ifndef FALSE
#define FALSE   0x00
#endif

#ifndef MEMALLOC
#define MEMALLOC(x)		calloc(1,x)
#define MEMFREE(x)		free(x)
#endif

#endif // __TGT_H_INCLUDED
Added gReceiverS/gReceiverS/gReceiverS/CFiles/gCorder/gCorderInterface.c.




























































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
//
//  gCorderInterface.c
//  MacProto
//
//  Created by Jim on 22/11/2014.
//  Copyright (c) 2014 Pandora Products. All rights reserved.
//
//	23-Nov-2014	Change to have presence thread
//	15-Dec-2014 Harden code for failures

#include "gCorderInterface.h"

#if 0
	#pragma mark -
	#pragma mark Data
#endif

#define PROMPT	"gCorder>"

static int getPrompt(gCORD *gc);		// Look for 'gCorder>"
static int getDump(gCORD *gc);			// Get and store dumped data

static void *gCorderScan(void *param);	// Scanning thread

#if 0
	#pragma mark -
	#pragma mark External API
#endif

/*******************************
 Initialize gCorder intenals

 @param port	- Port name

 @return gc if OK, NULL if failure
 ******************************/

gCORD *gCorderInit( const char *name )
{
	gCORD *gc;
	int val;
	
	// First build return object
	
	gc = (gCORD *)MEMALLOC(sizeof(gCORD));
	if( gc != NULL )
	{
		// Now open the port
		// Get port list
		
		gc->sp = OpenPortbyName(name,1, 38400, SER_STOP_ONE, SER_PARITY_NONE);
		if( gc->sp != NULL )
		{
			// Ok now start up scanning thread
			
			gc->scanRun = 1;
			val = pthread_mutex_init(&(gc->scanLock),NULL);
			val = pthread_create(&(gc->scanThread),NULL,gCorderScan,gc);
		}
		else
		{
			MEMFREE(gc);
			gc = NULL;
		}
	}
	
	return gc;
}

/*******************************
 Issue a command look for ** error or success

 @param cmd		gCorder command string with <cr>
 @param gc		gCorder data structure
 @param flag	If true then don't lock mutex
				done outside of routine

 @return 0 success <> 0 failure
 ******************************/
 
int gCorderCommand(const char *cmd,gCORD *gc,int flag)
{
	int rtnval = -1;	// Failure
	int len = (int)strlen(cmd);
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run, if flag false
		
		if( flag == 0)
			n = pthread_mutex_lock(&gc->scanLock);
		
		// (3) Send the command
		
		n = WritePort((char *)cmd, len, gc->sp);
		if( n == len )
		{
			// Sent ok look for response
			
			rtnval = getPrompt(gc);
		}
		
		// (4) Unlock the mutex
		
		if( flag == 0)
			n = pthread_mutex_unlock(&gc->scanLock);
	}
	
	return rtnval;
}

/*******************************
 Arm the gCorder - This has no following prompt
 
 @param gc  gCorder data structure

 @return 0 if success -1 if failure
 ******************************/

int gCorderArm(gCORD *gc)
{
	int rtnval = -1;	// Failure
	char cmd[2];
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run
		
		n = pthread_mutex_lock(&gc->scanLock);
		
		// (3) Send the command
		
		cmd[0] = 'C';
		cmd[1] = '\r';
		n = WritePort(cmd, 2, gc->sp);
		if( n == 2 )
		{
			rtnval = 0;
		}

		// (4) Unlock the mutex
		
		n = pthread_mutex_unlock(&gc->scanLock);
	}
	
	return rtnval;
}

/*******************************
 Read out dumped data int buffer
 
 @param gc  gCorder data structure

 @return 0 if success -1 if not
 ******************************/
int gCorderDump(gCORD *gc)
{
	int rtnval = -1;	// Failure
	int n;
	
	// (1) Is this trip necessary
	
	if( gc != NULL && gc->gCorderPresent)
	{
		// (2) Lock mutex for this run
		
		n = pthread_mutex_lock(&gc->scanLock);
	
		// (3) Send the command, don't lock mutex
		
		rtnval = gCorderCommand("D\r",gc,1);
		if( rtnval == 0 )
		{
			// Read out the dumped data
			
			rtnval = getDump(gc);
		}
		
		// (4) Unlock the mutex
		
		n = pthread_mutex_unlock(&gc->scanLock);

	}
	
	return rtnval;
}

/*******************************
 Close Down gCorder use
 
@param gc  gCorder data structure

 ******************************/
void gCorderClose(gCORD *gc)
{
	// (1) Is this trip necessary ?
	
	if( gc != NULL )
	{
		// Shut down scanning
		
		if( gc->scanThread != 0 )
		{
			gc->scanRun = 0;
			pthread_mutex_destroy(&gc->scanLock);
			pthread_join( gc->scanThread, NULL);
		}
		
		// Close the serial port
	
		ClosePort(gc->sp);
		
		// Remove the structure
		
		MEMFREE( gc );
	}
}

#if 0
	#pragma mark -
	#pragma mark Internal API
#endif

/*******************************
 Look for gCorder> prompt
 
 @param gc  gCorder data structure

 @return 0 found, -1 not found
 
 NOTE: This is inside the mutex
 ******************************/
static int getPrompt(gCORD *gc)
{
	int rtnval = -1;
	char buffer[8];
	char testBuf[16];
	int len,i;
	int state = 0;
	
	strcpy(testBuf,PROMPT);	// Get test string
	len = (int)strlen(testBuf);
	
	// Stay in this loop ~ 5 seconds
	// exit with either time out
	// gcorder> found
	
	for( i=0; i<40; i++)
	{
		if( StatPort(100,gc->sp) )	// Wait 100 ms for char
		{
			ReadPort(buffer, 1, gc->sp);
			if( buffer[0] == PROMPT[state])
			{
				// Next Character found move state
				state++;
				if( state >= len )
				{
					// Success all found
					rtnval = 0;
					break;
				}
			}
			else
				state = 0;	// Nope try again
		}
		else
			break;		// No data
	}
	
	return rtnval;
}

/*******************************
 Get the dumped data into dumpbuf
 
 @param gc  gCorder data structure

 @return 0 success <>0 bad
 NOTE: This is inside the mutex
 ******************************/
static int getDump(gCORD *gc)
{
	int rtnval = -1;
	int n;
	char *ptr;
	
	// Set up for run
	
	ptr = (char *)&gc->dumpBuffer[0];
	gc->dbSize = 0;
	
	// Stay in loop till buffer fills or it times out
	// exit with either time out
	// gcorder> found
	
	while( gc->dbSize < DUMP_SZ )
	{
		n = StatPort(100,gc->sp);
		if( n > 0 )
		{
			n = ReadPort(ptr, n, gc->sp);
			ptr += n;	// Move to next slot
			gc->dbSize += n;
		}
		else
		{
			rtnval = 0;
			break;		// No more data
		}
	}
	
	return rtnval;
}

#if 0
	#pragma mark -
	#pragma mark SCAN Thread
#endif

//******************************
/*******************************
 Scanner thread, scan for gCorder

 @param params gCORD data structure
 
 This thread sets/unsets the gCorderPresent flag

 @return NULL
 ******************************/
void *gCorderScan(void *params)
{
	gCORD *gc = (gCORD *)params;
	char buffer[32];
	int n,val;
	
	// Loop while scanRun is true
	
	while( gc->scanRun )
	{
		// First step try to lock the mutex
		// if already locked then just mark as
		// present and wait for next scan
		
		n = pthread_mutex_trylock(&gc->scanLock);
		if( n == 0 )
		{
			// Got the port so test
			// Send out <cr> and look for "gCorder>" string
	
			buffer[0] = '\r';
			n = WritePort(buffer,1,gc->sp);
			if( n == 1 )
			{
				// Success so far ....
				// Now look for prompt
		
				val = getPrompt(gc);
				if( val == 0 )
					gc->gCorderPresent = 1;
				else
					gc->gCorderPresent = 0;
			}
			
			pthread_mutex_unlock(&gc->scanLock);
		}

		// Wait a while and test again
		
		sleep(2);	// Run every 2 seconds
	}
	
	return NULL;
}


Added gReceiverS/gReceiverS/gReceiverS/CFiles/gCorder/gCorderInterface.h.










































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  gCorderInterface.h
//  MacProto
//
//  Created by Jim on 22/11/2014.
//  Copyright (c) 2014 Pandora Products. All rights reserved.
//

#ifndef __MacProto__gCorderInterface__
#define __MacProto__gCorderInterface__

#include <stdio.h>
#include <pthread.h>
#include "bsdserial.h"

#define DUMP_SZ	10000

typedef struct {
					PORT_HANDLE *sp;
					char dumpBuffer[DUMP_SZ];
					int dbSize;
	
					// Device Scanner
					int scanRun;
					pthread_mutex_t	scanLock;
					pthread_t scanThread;
	
					int gCorderPresent;
				} gCORD;


gCORD *gCorderInit( const char *name );
int gCorderCommand( const char *cmd,gCORD *gc,int flag );
int gCorderDump(gCORD *gc);
void gCorderClose(gCORD *gc);

#endif /* defined(__MacProto__gCorderInterface__) */
Added gReceiverS/gReceiverS/gReceiverS/Info.plist.




































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIconFile</key>
	<string></string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>LSMinimumSystemVersion</key>
	<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
	<key>NSHumanReadableCopyright</key>
	<string>Copyright © 2015 Pandora,Inc. All rights reserved.</string>
	<key>NSMainNibFile</key>
	<string>MainMenu</string>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>
</dict>
</plist>
Deleted gReceiverS/gReceiverSTests/Info.plist.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
















































Deleted gReceiverS/gReceiverSTests/gReceiverSTests.swift.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  gReceiverSTests.swift
//  gReceiverSTests
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

import XCTest
@testable import gReceiverS

class gReceiverSTests: XCTestCase {
    
    override func setUp() {
        super.setUp()
        // Put setup code here. This method is called before the invocation of each test method in the class.
    }
    
    override func tearDown() {
        // Put teardown code here. This method is called after the invocation of each test method in the class.
        super.tearDown()
    }
    
    func testExample() {
        // This is an example of a functional test case.
        // Use XCTAssert and related functions to verify your tests produce the correct results.
    }
    
    func testPerformanceExample() {
        // This is an example of a performance test case.
        self.measureBlock {
            // Put the code you want to measure the time of here.
        }
    }
    
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<








































































Deleted gReceiverS/gReceiverSUITests/Info.plist.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>$(EXECUTABLE_NAME)</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>$(PRODUCT_NAME)</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
















































Deleted gReceiverS/gReceiverSUITests/gReceiverSUITests.swift.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
//  gReceiverSUITests.swift
//  gReceiverSUITests
//
//  Created by Jim on 16/12/2015.
//  Copyright © 2015 Pandora,Inc. All rights reserved.
//

import XCTest

class gReceiverSUITests: XCTestCase {
        
    override func setUp() {
        super.setUp()
        
        // Put setup code here. This method is called before the invocation of each test method in the class.
        
        // In UI tests it is usually best to stop immediately when a failure occurs.
        continueAfterFailure = false
        // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
        XCUIApplication().launch()

        // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
    }
    
    override func tearDown() {
        // Put teardown code here. This method is called after the invocation of each test method in the class.
        super.tearDown()
    }
    
    func testExample() {
        // Use recording to get started writing UI tests.
        // Use XCTAssert and related functions to verify your tests produce the correct results.
    }
    
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<