-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
a square-root function, hence the addition of the MATH EE. While rebuilding the project to produce the Math.class file, I hit a compilation error in UI.java, for a missing constructor, SetData( Float, Unit ). For now, I've added that constructor to SetData.java, but it's not clear precisely when or how this issue was injected. This commit also includes the following files that were not previously in the Git index: Debug/.gitignore bin/library/UI$GuiConnection.class bin/library/UI.class bin/uidatatypes/Unit.class bin/uiinterfaces/IActionsAndDataFromProvider.class bin/uiinterfaces/IActionsAndDataToProvider.class javasrc/lib/MATH.java bin/lib/MATH.class I created the final two to provide access to the square-root function, so I'm confident that adding these into the Git index is correct. However, I'm less confident about the others, as they may have been intentionally left out, perhaps because they include path names that are specific to a particular Eclipse installation. This version runs fine with Verifier now.
- Loading branch information
John Wolfe
committed
Jun 13, 2014
1 parent
d1e6d56
commit a276296
Showing
12 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
!bin | ||
gen/code_generation/* | ||
src/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/src |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+327 Bytes
applications/gps/GPS Watch/bin/uiinterfaces/IActionsAndDataFromProvider.class
Binary file not shown.
Binary file added
BIN
+393 Bytes
applications/gps/GPS Watch/bin/uiinterfaces/IActionsAndDataToProvider.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package lib; | ||
|
||
public class MATH { | ||
public static float sqrt( float x ) { | ||
return (float) java.lang.Math.sqrt( x ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-529 Bytes
...models/GPS Watch/Library/Tracking/Tracking/WorkoutSession/currentHeartRate__Attribute.oal
Binary file not shown.