Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2017-11-13 20:25:52 +0000
committerDoug Schaefer2017-11-13 20:56:57 +0000
commit15c8bad95d394bef30dda8662e490e78b1afee33 (patch)
tree3d7485741085fcadeb78638fe04e34ebf4ea23bc /cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF
parentf1f9ddf0f70bdc5a4960803b47c6137a5d2486d4 (diff)
downloadorg.eclipse.cdt-15c8bad95d394bef30dda8662e490e78b1afee33.tar.gz
org.eclipse.cdt-15c8bad95d394bef30dda8662e490e78b1afee33.tar.xz
org.eclipse.cdt-15c8bad95d394bef30dda8662e490e78b1afee33.zip
Serial Flash Target and Launch. Clean up Generic Launch.
Adds target, launch classes, and launch bar support for targets intended to upload their code to flash using a Serial Port. The port is co-ordinated with the Serial Terminal so that the terminal is paused during the upload. Also cleaned up the Generic Launch so it's not using the External Tools launch which has a number of UX issues. This simplifies the settings and gives us more control. And it's made reusable for the Serial Flash launch. Change-Id: I31e9970243fbf1cf22d027bbdb892fde104dbefe
Diffstat (limited to 'cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF')
-rw-r--r--cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF16
1 files changed, 16 insertions, 0 deletions
diff --git a/cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF b/cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF
new file mode 100644
index 00000000000..1530f18559d
--- /dev/null
+++ b/cross/org.eclipse.cdt.launch.serial.ui/META-INF/MANIFEST.MF
@@ -0,0 +1,16 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Ui
+Bundle-SymbolicName: org.eclipse.cdt.launch.serial.ui;singleton:=true
+Bundle-Version: 1.0.0.qualifier
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.13.0",
+ org.eclipse.ui;bundle-version="3.109.0",
+ org.eclipse.debug.ui;bundle-version="3.12.50",
+ org.eclipse.launchbar.core;bundle-version="2.2.0",
+ org.eclipse.launchbar.ui;bundle-version="2.2.0",
+ org.eclipse.cdt.launch.serial.core;bundle-version="1.0.0",
+ org.eclipse.cdt.native.serial;bundle-version="1.1.0",
+ org.eclipse.cdt.launch;bundle-version="9.2.0"
+Bundle-Activator: org.eclipse.cdt.launch.serial.ui.internal.Activator
+Bundle-ActivationPolicy: lazy

Back to the top