Added elcipse metadata.

This commit is contained in:
Jason 2016-01-28 11:33:46 -05:00
parent d265820037
commit 949b53c98f
112 changed files with 11122 additions and 0 deletions

0
.metadata/.lock Normal file
View File

2321
.metadata/.log Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,2 @@
*** SESSION Jan 28, 2016 10:09:07.56 -------------------------------------------
*** SESSION Jan 28, 2016 10:15:21.77 -------------------------------------------

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,6 @@
#
#Thu Jan 28 11:32:02 EST 2016
Debug/FRCUserProgram=1
Debug/src/Robot.o=1
src/TankDrive.h=1
src/Robot.cpp=1

View File

@ -0,0 +1,3 @@
#
#Thu Jan 28 11:22:50 EST 2016
cdt.managedbuild.config.gnu.cross.exe.debug.1104744751=2043693231

View File

@ -0,0 +1,11 @@
11:32:02 **** Incremental Build of configuration Debug for project DriveBase ****
Info: Internal Builder is used for build
arm-frc-linux-gnueabi-g++ -std=c++1y "-IC:\\Users\\Jason/wpilib/cpp/current/include" "-ID:\\Dropbox\\Public\\FRC\\2016\\FRC2016\\DriveBase\\src" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\Robot.o" "..\\src\\Robot.cpp"
Cannot run program "arm-frc-linux-gnueabi-g++": Launching failed
Error: Program "arm-frc-linux-gnueabi-g++" not found in PATH
PATH=[\usr\local\bin;C:/Program Files (x86)/Java/jre1.8.0_66/bin/client;C:/Program Files (x86)/Java/jre1.8.0_66/bin;C:/Program Files (x86)/Java/jre1.8.0_66/lib/i386;C:\Python27\;C:\Python34\;C:\Python34\Scripts;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\Windows Live\Shared;C:\WINDOWS\system32]
11:32:02 Build Finished (took 36ms)

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<item value="" key="org.eclipse.cdt.utils.ui.controls.FileListControl"/>
<section name="org.eclipse.cdt.ui.text.hover.CMacroExpansionExploration">
</section>
<section name="completion_proposal_size">
</section>
</section>

View File

@ -0,0 +1,8 @@
11:32:02 **** Incremental Build of configuration Debug for project DriveBase ****
Info: Internal Builder is used for build
arm-frc-linux-gnueabi-g++ -std=c++1y "-IC:\\Users\\Jason/wpilib/cpp/current/include" "-ID:\\Dropbox\\Public\\FRC\\2016\\FRC2016\\DriveBase\\src" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\Robot.o" "..\\src\\Robot.cpp"
Cannot run program "arm-frc-linux-gnueabi-g++": Launching failed
Error: Program "arm-frc-linux-gnueabi-g++" not found in PATH
PATH=[\usr\local\bin;C:/Program Files (x86)/Java/jre1.8.0_66/bin/client;C:/Program Files (x86)/Java/jre1.8.0_66/bin;C:/Program Files (x86)/Java/jre1.8.0_66/lib/i386;C:\Python27\;C:\Python34\;C:\Python34\Scripts;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\Windows Live\Shared;C:\WINDOWS\system32]

View File

@ -0,0 +1,18 @@
/*
* TankDrive.cpp
*
* Created on: Jan 28, 2016
* Author: Jason
*/
#include <TankDrive.h>
TankDrive::TankDrive() {
// TODO Auto-generated constructor stub
}
TankDrive::~TankDrive() {
// TODO Auto-generated destructor stub
}

View File

@ -0,0 +1,17 @@
/*
* TankDrive.h
*
* Created on: Jan 28, 2016
* Author: Jason
*/
#ifndef SRC_TANKDRIVE_H_
#define SRC_TANKDRIVE_H_
class TankDrive {
public:
TankDrive();
virtual ~TankDrive();
};
#endif /* SRC_TANKDRIVE_H_ */

View File

@ -0,0 +1,13 @@
/*
* TankDrive.cpp
*
* Created on: Jan 28, 2016
* Author: Jason
*/
#include <TankDrive.h>
TankDrive::~TankDrive() {
// TODO Auto-generated destructor stub
}

View File

@ -0,0 +1,38 @@
#include "WPILib.h"
/**
* This sample shows how to use the new CANTalon to just run a motor in a basic
* throttle mode, in the same manner as you might control a traditional PWM
* controlled motor.
*
*/
class Robot : public SampleRobot {
CANTalon m_motor;
Joystick m_stick;
// update every 0.01 seconds/10 milliseconds.
// The talon only receives control packets every 10ms.
double kUpdatePeriod = 0.010;
public:
Robot()
: m_motor(1), // Initialize the Talon as device 1. Use the roboRIO web
// interface to change the device number on the talons.
m_stick(0)
{}
/**
* Runs the motor from the output of a Joystick.
*/
void OperatorControl() {
while (IsOperatorControl() && IsEnabled()) {
// Takes a number from -1.0 (full reverse) to +1.0 (full forwards).
m_motor.Set(m_stick.GetY());
Wait(kUpdatePeriod); // Wait a bit so that the loop doesn't lock everything up.
}
}
};
START_ROBOT_CLASS(Robot)

View File

@ -0,0 +1,9 @@
eclipse.preferences.version=1
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/CPATH/delimiter=;
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/CPATH/operation=remove
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/CPLUS_INCLUDE_PATH/delimiter=;
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/CPLUS_INCLUDE_PATH/operation=remove
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/C_INCLUDE_PATH/delimiter=;
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/C_INCLUDE_PATH/operation=remove
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/append=true
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751/appendContributed=true

View File

@ -0,0 +1,3 @@
#GitProjectData
#Thu Jan 28 10:16:34 EST 2016
.gitdir=../.git

View File

@ -0,0 +1,3 @@
#GitProjectData
#Thu Jan 28 10:09:19 EST 2016
.gitdir=../.git

Binary file not shown.

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
toolsVersionPreference=2016.01.15.14.23.11.DEVELOPMENT

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
libraryVersion_current=2016.01.15.14.23.20.DEVELOPMENT

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
indexer/preferenceScope=0

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.cdt.debug.core.cDebug.default_source_containers=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<sourceLookupDirector>\r\n<sourceContainers duplicates\="false">\r\n<container memento\="AbsolutePath" typeId\="org.eclipse.cdt.debug.core.containerType.absolutePath"/>\r\n<container memento\="programRelativePath" typeId\="org.eclipse.cdt.debug.core.containerType.programRelativePath"/>\r\n<container memento\="&lt;?xml version\=&quot;1.0&quot; encoding\=&quot;UTF-8&quot; standalone\=&quot;no&quot;?&gt;&\#13;&\#10;&lt;project referencedProjects\=&quot;true&quot;/&gt;&\#13;&\#10;" typeId\="org.eclipse.cdt.debug.core.containerType.project"/>\r\n</sourceContainers>\r\n</sourceLookupDirector>\r\n

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
properties/GearsBotCPP.cdt.managedbuild.target.gnu.cross.exe.13534228/cdt.managedbuild.config.gnu.cross.exe.debug.1104744751=cdt.managedbuild.tool.gnu.cross.archiver.412234585\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.tool.gnu.cross.cpp.compiler.1505235107\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.toolchain.gnu.cross.exe.debug.379433867\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.tool.gnu.cross.c.compiler.1261239456\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.tool.gnu.cross.assembler.1047448065\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.tool.gnu.cross.cpp.linker.1895838080\=rebuildState\\\=false\\r\\n\r\ncdt.managedbuild.config.gnu.cross.exe.debug.1104744751\=rcState\\\=0\\r\\nrebuildState\\\=false\\r\\n\r\ncdt.managedbuild.tool.gnu.cross.c.linker.362679811\=rebuildState\\\=false\\r\\n\r\n

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.mylyn.cdt.ui.run.count.3_3_0=1

View File

@ -0,0 +1,5 @@
content_assist_disabled_computers=org.eclipse.cdt.ui.textProposalCategory\u0000org.eclipse.cdt.ui.parserProposalCategory\u0000
eclipse.preferences.version=1
spelling_locale_initialized=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
version=1

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.core.variables.valueVariables=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<valueVariables>\r\n<valueVariable description\="WPILib Path" name\="WPILIB" readOnly\="false" value\="${HOME}/wpilib"/>\r\n<valueVariable description\="user.home directory" name\="HOME" readOnly\="false" value\="C\:\\Users\\Jason"/>\r\n</valueVariables>\r\n

View File

@ -0,0 +1,5 @@
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.applicationLaunchType=org.eclipse.cdt.dsf.gdb.launch.localCLaunch,debug,;org.eclipse.cdt.cdi.launch.localCLaunch,run,;
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.attachLaunchType=org.eclipse.cdt.dsf.gdb.launch.attachCLaunch,debug,;
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.postmortemLaunchType=org.eclipse.cdt.dsf.gdb.launch.coreCLaunch,debug,;
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.remoteApplicationLaunchType=org.eclipse.rse.remotecdt.dsf.debug,debug,;
eclipse.preferences.version=1

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n
preferredTargets=org.eclipse.cdt.debug.ui.toggleCBreakpointTarget,org.eclipse.cdt.debug.ui.toggleCDynamicPrintfTarget\:org.eclipse.cdt.debug.ui.toggleCBreakpointTarget|

View File

@ -0,0 +1,2 @@
GitRepositoriesView.GitDirectories=D\:\\Dropbox\\Public\\FRC\\2016\\FRC2016\\.git;
eclipse.preferences.version=1

View File

@ -0,0 +1,3 @@
action=ASK
configured=true
eclipse.preferences.version=1

View File

@ -0,0 +1,14 @@
content_assist_proposals_background=255,255,255
content_assist_proposals_foreground=0,0,0
eclipse.preferences.version=1
fontPropagated=true
org.eclipse.jdt.internal.ui.navigator.layout=2
org.eclipse.jdt.ui.editor.tab.width=
org.eclipse.jdt.ui.formatterprofiles.version=12
org.eclipse.jdt.ui.javadoclocations.migrated=true
org.eclipse.jface.textfont=1|Courier New|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Courier New;
proposalOrderMigrated=true
spelling_locale_initialized=true
tabWidthPropagated=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
mylyn.attention.migrated=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true

View File

@ -0,0 +1,4 @@
eclipse.preferences.version=1
migrated.task.repositories.secure.store=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
org.eclipse.rse.systemtype.local.systemType.defaultUserId=Jason
useridperkey=TechDesktop.Local\=Jason;

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.rse.preferences.order.connections=TechDesktop.Local

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
org.eclipse.team.ui.first_time=false

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
overviewRuler_migration=migrated_3.1

View File

@ -0,0 +1,5 @@
PROBLEMS_FILTERS_MIGRATE=true
eclipse.preferences.version=1
platformState=1453993639562
quickStart=false
tipsAndTricks=true

View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
showIntro=false

View File

@ -0,0 +1,2 @@
//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false
eclipse.preferences.version=1

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
ýÿÿÿversion

View File

@ -0,0 +1 @@
NRM<EFBFBD>

View File

@ -0,0 +1,2 @@
ýÿÿÿ fingerprintactionmessage
problemUrlbugIdbugUrl

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,57 @@
{
"version": "v1",
"title": "Eclipse.org Error Reporting Server",
"description": "Automated Error Reporting for eclipse.org",
"timestamp": 1453993754385,
"ttl": 20160,
"helpUrl": "https://wiki.eclipse.org/EPP/Logging",
"feedbackUrl": "https://docs.google.com/a/codetrails.com/forms/d/1wd9AzydLv_TMa7ZBXHO7zQIhZjZCJRNMed-6J4fVNsc/viewform",
"aboutUrl": "https://dev.eclipse.org/recommenders/community/confess/#/about",
"submitUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/reports/",
"maxReportSize": 5242880,
"problemsUrl": "https://www.eclipse.org/downloads/download.php?r\u003d1\u0026file\u003d/technology/epp/logging/problems.zip",
"problemsTtl": 20160,
"queryUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/query/",
"connectTimeout": 10000,
"socketTimeout": 100000,
"acceptedProducts": [
"org.eclipse.*"
],
"acceptedPlugins": [
"org.eclipse.*",
"org.apache.log4j.*",
"com.codetrails.*"
],
"acceptedPackages": [
"org.eclipse.*",
"org.apache.*",
"java.*",
"javax.*",
"javafx.*",
"sun.*",
"com.sun.*",
"com.codetrails.*",
"com.google.*",
"org.osgi.*",
"ch.qos.*",
"org.slf4j.*"
],
"acceptOtherPackages": true,
"acceptUiFreezes": true,
"ignoredStatuses": [
"org.eclipse.equinox.p2.*::",
"org.eclipse.epp.mpc.ui:java.io.IOException:",
"org.eclipse.epp.mpc.ui:java.net.SocketTimeoutException:",
"org.eclipse.oomph.setup.core:$org.apache.http.ConnectionClosedException:",
"org.eclipse.ui::Conflicting handlers for*",
"org.eclipse.jface:java.io.IOException:Unable to resolve plug-in*",
"org.eclipse.core.runtime::Invalid input url*",
"org.eclipse.core.filesystem::Could not move*",
"org.eclipse.core.filesystem::Could not delete*",
"org.eclipse.pde.core::The current target platform contains errors*",
":org.eclipse.equinox.security.storage.StorageException:",
":org.eclipse.ecf.filetransfer.*:",
":java.net.*:"
],
"problemsZipLastDownloadTimestamp": 1453993766256
}

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="org.eclipse.equinox.internal.p2.ui.dialogs.InstallWizard.WizardSettings">
<item value="883" key="DIALOG_WIDTH"/>
<item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/>
<item value="692" key="DIALOG_HEIGHT"/>
<item value="71" key="DIALOG_X_ORIGIN"/>
<item value="-77" key="DIALOG_Y_ORIGIN"/>
</section>
</section>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<typeInfoHistroy/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<qualifiedTypeNameHistroy/>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<session version="1.0">
<refactoring comment="Delete resource &apos;DriveBase/src/TankDrive.cpp&apos;" deleteContents="false" description="Delete resource &apos;DriveBase/src/TankDrive.cpp&apos;" element1="/DriveBase/src/TankDrive.cpp" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1453998554166"/>
</session>

View File

@ -0,0 +1 @@
1453998554166 Delete resource 'DriveBase/src/TankDrive.cpp'

Some files were not shown because too many files have changed in this diff Show More