├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .mvn └── extensions.xml ├── .project ├── .settings └── org.eclipse.m2e.core.prefs ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.md ├── README-EPP.md ├── README-MAINTAINER.md ├── README.md ├── branding ├── org.eclipse.embedcdt-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.codered-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.gdbjtag-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.gdbjtag.jlink-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.gdbjtag.openocd-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.gdbjtag.qemu-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.debug.packs-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.managedbuild.cross-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.managedbuild.cross.arm-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.managedbuild.cross.riscv-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.packs-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.ad-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.cortexm-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.freescale-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.sifive-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.stm-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties ├── org.eclipse.embedcdt.templates.xpack-branding │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── GME-32.png │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about.ini │ ├── about.mappings │ ├── about.properties │ ├── build.properties │ └── plugin.properties └── pom.xml ├── debug.options ├── features ├── org.eclipse.embedcdt-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.codered-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.debug.gdbjtag-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.debug.gdbjtag.jlink-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.debug.gdbjtag.openocd-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.debug.gdbjtag.qemu-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.doc.user-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.managedbuild.cross.arm-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.managedbuild.cross.riscv-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.packs-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.ad-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.cortexm-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.freescale-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.sifive-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.stm-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf ├── org.eclipse.embedcdt.templates.xpack-feature │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── epl-2.0.html │ ├── feature.properties │ ├── feature.xml │ └── p2.inf └── pom.xml ├── info ├── BUILD.txt ├── Compatibility IDs.md ├── FORMATTING.md ├── GCC.txt ├── VERSIONS.md └── p2.md ├── parent └── pom.xml ├── plugins ├── org.eclipse.embedcdt.codered.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── cr.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ └── internal │ │ └── codered │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ └── perspectives │ │ └── CodeRedPerspectiveFactory.java ├── org.eclipse.embedcdt.core │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ ├── org.eclipse.pde.ds.annotations.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── lib │ │ ├── README.md │ │ ├── ST4-4.0.8.jar │ │ ├── antlr-runtime-3.5.2.jar │ │ ├── jackson-annotations-2.9.9.jar │ │ ├── jackson-core-2.9.9.jar │ │ ├── jackson-databind-2.9.9.3.jar │ │ ├── json-simple-1.1.1.jar │ │ └── org.jsoup_1.7.2.v201411291515.jar │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ ├── README.md │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── core │ │ ├── AltWindowsRegistry.java │ │ ├── AltWindowsRegistryStreamReader.java │ │ ├── CProjectPacksStorage.java │ │ ├── EclipseUtils.java │ │ ├── EmbeddedCdtPropertyTester.java │ │ ├── IDs.java │ │ ├── JsonUtils.java │ │ ├── StringUtils.java │ │ ├── SystemJob.java │ │ ├── Xml.java │ │ ├── XpackUtils.java │ │ ├── liqp │ │ │ ├── Examples.java │ │ │ ├── LValue.java │ │ │ ├── ParseSettings.java │ │ │ ├── ProtectionSettings.java │ │ │ ├── RenderSettings.java │ │ │ ├── Template.java │ │ │ ├── TemplateContext.java │ │ │ ├── exceptions │ │ │ │ ├── ExceededMaxIterationsException.java │ │ │ │ └── VariableNotExistException.java │ │ │ ├── filters │ │ │ │ ├── Append.java │ │ │ │ ├── Capitalize.java │ │ │ │ ├── Date.java │ │ │ │ ├── Divided_By.java │ │ │ │ ├── Downcase.java │ │ │ │ ├── Escape.java │ │ │ │ ├── Escape_Once.java │ │ │ │ ├── Filter.java │ │ │ │ ├── First.java │ │ │ │ ├── H.java │ │ │ │ ├── Join.java │ │ │ │ ├── Last.java │ │ │ │ ├── Map.java │ │ │ │ ├── Minus.java │ │ │ │ ├── Modulo.java │ │ │ │ ├── Newline_To_Br.java │ │ │ │ ├── Plus.java │ │ │ │ ├── Prepend.java │ │ │ │ ├── Remove.java │ │ │ │ ├── Remove_First.java │ │ │ │ ├── Replace.java │ │ │ │ ├── Replace_First.java │ │ │ │ ├── Size.java │ │ │ │ ├── Sort.java │ │ │ │ ├── Split.java │ │ │ │ ├── Strip_HTML.java │ │ │ │ ├── Strip_Newlines.java │ │ │ │ ├── Times.java │ │ │ │ ├── Truncate.java │ │ │ │ ├── Truncatewords.java │ │ │ │ └── Upcase.java │ │ │ ├── nodes │ │ │ │ ├── AndNode.java │ │ │ │ ├── AtomNode.java │ │ │ │ ├── AttributeNode.java │ │ │ │ ├── BlockNode.java │ │ │ │ ├── ContainsNode.java │ │ │ │ ├── EqNode.java │ │ │ │ ├── FilterNode.java │ │ │ │ ├── GtEqNode.java │ │ │ │ ├── GtNode.java │ │ │ │ ├── LNode.java │ │ │ │ ├── LiquidWalker.java │ │ │ │ ├── LookupNode.java │ │ │ │ ├── LtEqNode.java │ │ │ │ ├── LtNode.java │ │ │ │ ├── NEqNode.java │ │ │ │ ├── OrNode.java │ │ │ │ ├── OutputNode.java │ │ │ │ └── TagNode.java │ │ │ ├── parser │ │ │ │ ├── Flavor.java │ │ │ │ ├── LiquidLexer.java │ │ │ │ └── LiquidParser.java │ │ │ └── tags │ │ │ │ ├── Assign.java │ │ │ │ ├── Capture.java │ │ │ │ ├── Case.java │ │ │ │ ├── Comment.java │ │ │ │ ├── Cycle.java │ │ │ │ ├── For.java │ │ │ │ ├── If.java │ │ │ │ ├── Include.java │ │ │ │ ├── Raw.java │ │ │ │ ├── Tablerow.java │ │ │ │ ├── Tag.java │ │ │ │ └── Unless.java │ │ ├── preferences │ │ │ ├── DefaultPreferences.java │ │ │ ├── Discoverer.java │ │ │ └── PersistentPreferences.java │ │ └── zafarkhaja │ │ │ └── semver │ │ │ ├── MetadataVersion.java │ │ │ ├── NormalVersion.java │ │ │ ├── ParseException.java │ │ │ ├── Parser.java │ │ │ ├── UnexpectedCharacterException.java │ │ │ ├── Version.java │ │ │ ├── VersionParser.java │ │ │ ├── expr │ │ │ ├── And.java │ │ │ ├── CompositeExpression.java │ │ │ ├── Equal.java │ │ │ ├── Expression.java │ │ │ ├── ExpressionParser.java │ │ │ ├── Greater.java │ │ │ ├── GreaterOrEqual.java │ │ │ ├── Less.java │ │ │ ├── LessOrEqual.java │ │ │ ├── Lexer.java │ │ │ ├── LexerException.java │ │ │ ├── Not.java │ │ │ ├── NotEqual.java │ │ │ ├── Or.java │ │ │ ├── UnexpectedTokenException.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ ├── Stream.java │ │ │ ├── UnexpectedElementException.java │ │ │ └── package-info.java │ │ └── internal │ │ └── core │ │ ├── AbstractActivator.java │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.core │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ ├── cproject_extra_data.exsd │ │ └── svd_path.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── core │ │ │ └── data │ │ │ ├── ICProjectExtraDataManager.java │ │ │ ├── ICProjectExtraDataManagerFactory.java │ │ │ ├── ISVDPathManager.java │ │ │ └── ISVDPathManagerFactory.java │ │ └── internal │ │ └── debug │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── TODO.txt │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── core │ │ │ ├── ConfigurationAttributes.java │ │ │ ├── DebugUtils.java │ │ │ ├── ILaunchConfigurationProvider.java │ │ │ ├── ImmediateDataRequestMonitor.java │ │ │ ├── data │ │ │ ├── CProjectAttributes.java │ │ │ ├── CProjectExtraDataManagerProxy.java │ │ │ └── SVDPathManagerProxy.java │ │ │ ├── datamodel │ │ │ ├── IPeripheralDMContext.java │ │ │ ├── PeripheralDMContext.java │ │ │ ├── PeripheralDMNode.java │ │ │ ├── PeripheralValue.java │ │ │ ├── SvdClusterDMNode.java │ │ │ ├── SvdDMNode.java │ │ │ ├── SvdDerivedFromPath.java │ │ │ ├── SvdEnumeratedValueDMNode.java │ │ │ ├── SvdEnumerationDMNode.java │ │ │ ├── SvdFieldDMNode.java │ │ │ ├── SvdObjectDMNode.java │ │ │ ├── SvdPeripheralDMNode.java │ │ │ ├── SvdRegisterDMNode.java │ │ │ └── SvdUtils.java │ │ │ ├── dsf │ │ │ ├── AbstractGnuMcuLaunchConfigurationDelegate.java │ │ │ ├── GdbMcuMemoryBlockRetrievalManager.java │ │ │ ├── GnuMcuCommandFactory.java │ │ │ ├── GnuMcuControl_7_2.java │ │ │ ├── GnuMcuControl_7_4.java │ │ │ ├── GnuMcuDebuggerCommandsService.java │ │ │ ├── GnuMcuFinalLaunchSequence.java │ │ │ ├── GnuMcuFinalLaunchSequence_7_2.java │ │ │ ├── GnuMcuGdbBackend.java │ │ │ ├── GnuMcuGdbServerBackend.java │ │ │ ├── GnuMcuLaunch.java │ │ │ ├── GnuMcuProcesses_7_2_1.java │ │ │ ├── GnuMcuRestartProcessSequence.java │ │ │ ├── GnuMcuServerServicesLaunchSequence.java │ │ │ ├── GnuMcuServicesFactory.java │ │ │ └── GnuMcuServicesLaunchSequence.java │ │ │ ├── memory │ │ │ ├── PeripheralMemoryBlockExtension.java │ │ │ ├── PeripheralMemoryBlockRetrieval.java │ │ │ └── PeripheralMemoryRegion.java │ │ │ ├── preferences │ │ │ ├── DefaultPreferences.java │ │ │ └── PersistentPreferences.java │ │ │ ├── properties │ │ │ └── PersistentProperties.java │ │ │ ├── services │ │ │ ├── IGdbServerBackendService.java │ │ │ ├── IGnuMcuDebuggerCommandsService.java │ │ │ ├── IPeripheralMemoryService.java │ │ │ ├── IPeripheralsService.java │ │ │ ├── PeripheralMemoryService.java │ │ │ └── PeripheralsService.java │ │ │ └── viewmodel │ │ │ └── peripheral │ │ │ ├── PeripheralClusterArrayElementVMNode.java │ │ │ ├── PeripheralClusterArrayVMNode.java │ │ │ ├── PeripheralClusterRepetitionVMNode.java │ │ │ ├── PeripheralClusterVMNode.java │ │ │ ├── PeripheralGroupVMNode.java │ │ │ ├── PeripheralPath.java │ │ │ ├── PeripheralRegisterArrayElementVMNode.java │ │ │ ├── PeripheralRegisterArrayVMNode.java │ │ │ ├── PeripheralRegisterFieldRepetitionVMNode.java │ │ │ ├── PeripheralRegisterFieldVMNode.java │ │ │ ├── PeripheralRegisterRepetitionVMNode.java │ │ │ ├── PeripheralRegisterVMNode.java │ │ │ ├── PeripheralTopVMNode.java │ │ │ └── PeripheralTreeVMNode.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.jlink.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── jlink │ │ │ └── core │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationAttributes.java │ │ │ ├── DynamicVariableResolver.java │ │ │ ├── JTagDevice.java │ │ │ ├── SemihostingProcess.java │ │ │ ├── dsf │ │ │ ├── DebuggerCommands.java │ │ │ ├── GdbBackend.java │ │ │ ├── GdbServerBackend.java │ │ │ ├── Launch.java │ │ │ ├── LaunchConfigurationDelegate.java │ │ │ └── ServicesFactory.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ ├── DefaultPreferences.java │ │ │ ├── PersistentPreferences.java │ │ │ └── PreferenceConstants.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── jlink │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.jlink.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── obj16 │ │ │ └── c_app.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── jlink │ │ │ └── ui │ │ │ ├── ButtonResetHandler.java │ │ │ ├── ButtonRestartActionDelegate.java │ │ │ ├── TabDebugger.java │ │ │ ├── TabGroupLaunchConfiguration.java │ │ │ ├── TabMain.java │ │ │ └── TabStartup.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── jlink │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── GlobalMcuPage.java │ │ └── WorkspaceMcuPage.java │ │ └── properties │ │ └── ProjectMcuPage.java ├── org.eclipse.embedcdt.debug.gdbjtag.openocd.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── openocd │ │ │ └── core │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationAttributes.java │ │ │ ├── DynamicVariableResolver.java │ │ │ ├── JTagDevice.java │ │ │ ├── dsf │ │ │ ├── DebuggerCommands.java │ │ │ ├── GdbBackend.java │ │ │ ├── GdbServerBackend.java │ │ │ ├── Launch.java │ │ │ ├── LaunchConfigurationDelegate.java │ │ │ └── ServicesFactory.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ ├── DefaultPreferences.java │ │ │ ├── PersistentPreferences.java │ │ │ └── PreferenceConstants.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── openocd │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.openocd.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── obj16 │ │ │ └── c_app.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── openocd │ │ │ └── ui │ │ │ ├── ButtonResetHandler.java │ │ │ ├── ButtonRestartActionDelegate.java │ │ │ ├── TabDebugger.java │ │ │ ├── TabGroupLaunchConfiguration.java │ │ │ ├── TabMain.java │ │ │ └── TabStartup.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── openocd │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── GlobalMcuPage.java │ │ └── WorkspaceMcuPage.java │ │ └── properties │ │ └── ProjectMcuPage.java ├── org.eclipse.embedcdt.debug.gdbjtag.pyocd.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ ├── readme_json-simple.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── pyocd │ │ │ └── core │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationAttributes.java │ │ │ ├── DynamicVariableResolver.java │ │ │ ├── JTagDevice.java │ │ │ ├── PyOCD.java │ │ │ ├── SemihostingProcess.java │ │ │ ├── dsf │ │ │ ├── DebuggerCommands.java │ │ │ ├── GdbBackend.java │ │ │ ├── GdbServerBackend.java │ │ │ ├── Launch.java │ │ │ ├── LaunchConfigurationDelegate.java │ │ │ └── ServicesFactory.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ ├── DefaultPreferences.java │ │ │ ├── PersistentPreferences.java │ │ │ └── PreferenceConstants.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── pyocd │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── obj16 │ │ │ └── c_app.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── pyocd │ │ │ └── ui │ │ │ ├── ButtonResetHandler.java │ │ │ ├── ButtonRestartActionDelegate.java │ │ │ ├── TabDebugger.java │ │ │ ├── TabGroupLaunchConfiguration.java │ │ │ ├── TabMain.java │ │ │ └── TabStartup.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── pyocd │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── GlobalMcuPage.java │ │ └── WorkspaceMcuPage.java │ │ └── properties │ │ └── ProjectMcuPage.java ├── org.eclipse.embedcdt.debug.gdbjtag.qemu.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── qemu │ │ │ └── core │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationAttributes.java │ │ │ ├── DynamicVariableResolver.java │ │ │ ├── JTagDevice.java │ │ │ ├── dsf │ │ │ ├── DebuggerCommands.java │ │ │ ├── GdbBackend.java │ │ │ ├── GdbServerBackend.java │ │ │ ├── Launch.java │ │ │ ├── LaunchConfigurationDelegate.java │ │ │ └── ServicesFactory.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ ├── DefaultPreferences.java │ │ │ ├── PersistentPreferences.java │ │ │ └── PreferenceConstants.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── qemu │ │ └── core │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.qemu.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ └── obj16 │ │ │ └── c_app.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── qemu │ │ │ └── ui │ │ │ ├── ButtonResetHandler.java │ │ │ ├── ButtonRestartActionDelegate.java │ │ │ ├── TabDebugger.java │ │ │ ├── TabGroupLaunchConfiguration.java │ │ │ ├── TabGroupLaunchConfigurationAarch64.java │ │ │ ├── TabGroupLaunchConfigurationArm.java │ │ │ ├── TabGroupLaunchConfigurationRiscv32.java │ │ │ ├── TabGroupLaunchConfigurationRiscv64.java │ │ │ ├── TabMain.java │ │ │ └── TabStartup.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── qemu │ │ └── ui │ │ ├── Activator.java │ │ ├── McuPage.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── GlobalMcuPage.java │ │ └── WorkspaceMcuPage.java │ │ └── properties │ │ └── ProjectMcuPage.java ├── org.eclipse.embedcdt.debug.gdbjtag.restart.ui │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── dlcl16 │ │ │ └── restart_co.gif │ │ └── elcl16 │ │ │ └── restart_co.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── restart │ │ │ └── ui │ │ │ ├── RestartCommandHandler.java │ │ │ ├── Startup.java │ │ │ └── action │ │ │ ├── DebugCommandActionDelegate.java │ │ │ ├── RestartCommandAction.java │ │ │ └── RestartCommandActionDelegate.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── restart │ │ └── ui │ │ └── Activator.java ├── org.eclipse.embedcdt.debug.gdbjtag.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── field.png │ │ ├── filter.png │ │ ├── filter_rem.png │ │ ├── memory.png │ │ ├── peripheral.png │ │ ├── register_obj.png │ │ ├── registergroup_obj.png │ │ └── system_peripheral.png │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── debug │ │ └── gdbjtag │ │ │ └── ui │ │ │ ├── MemoryBlockMonitor.java │ │ │ ├── PeripheralsColorFactory.java │ │ │ ├── TabSvd.java │ │ │ ├── preferences │ │ │ ├── ColorChangedFactory.java │ │ │ ├── ColorChangedLightFactory.java │ │ │ ├── ColorChangedMediumFactory.java │ │ │ ├── ColorReadOnlyFactory.java │ │ │ └── ColorWriteOnlyFactory.java │ │ │ ├── properties │ │ │ ├── SvdPage.java │ │ │ └── SvdTab.java │ │ │ ├── render │ │ │ ├── peripheral │ │ │ │ ├── ILinkToolTipListener.java │ │ │ │ ├── LinkToolTip.java │ │ │ │ ├── PeripheralColumnInfo.java │ │ │ │ ├── PeripheralContentProvider.java │ │ │ │ ├── PeripheralEditingSupport.java │ │ │ │ ├── PeripheralEnumerationCellEditor.java │ │ │ │ ├── PeripheralFilterDialog.java │ │ │ │ ├── PeripheralNameFilter.java │ │ │ │ ├── PeripheralRenderingDelegate.java │ │ │ │ └── PeripheralViewerComparator.java │ │ │ └── peripherals │ │ │ │ └── PeripheralsColumnPresentation.java │ │ │ └── viewmodel │ │ │ ├── GnuMcuAdapterFactory.java │ │ │ ├── GnuMcuViewModelAdapter.java │ │ │ └── peripherals │ │ │ ├── PeripheralsVMModelProxyStrategy.java │ │ │ ├── PeripheralsVMNode.java │ │ │ └── PeripheralsVMProvider.java │ │ └── internal │ │ └── debug │ │ └── gdbjtag │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── PeripheralRendering.java │ │ └── PeripheralsPage.java │ │ └── render │ │ ├── peripheral │ │ └── PeripheralColumnLabelProvider.java │ │ └── peripherals │ │ └── PeripheralsView.java ├── org.eclipse.embedcdt.doc.user │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.md │ ├── about.html │ ├── build.properties │ ├── concepts │ │ ├── before_you_begin.html │ │ ├── concepts.html │ │ ├── home.html │ │ ├── preferences.html │ │ ├── templates.html │ │ ├── toolchain_arm_embedded.html │ │ ├── toolchain_custom.html │ │ ├── toolchain_devkit.html │ │ ├── toolchain_linaro_armv7.html │ │ ├── toolchain_linaro_armv8.html │ │ ├── toolchain_path.html │ │ ├── toolchain_sourcery.html │ │ ├── toolchain_yagarto.html │ │ └── toolchains.html │ ├── getting_started │ │ ├── build_project.html │ │ ├── debug_project.html │ │ ├── overview.html │ │ ├── simple_project.html │ │ └── tutorial.html │ ├── plugin.properties │ ├── plugin.xml │ ├── references │ │ ├── references.html │ │ └── whats_new.html │ ├── tasks │ │ ├── create_projects.html │ │ ├── create_projects_with_template.html │ │ └── tasks.html │ ├── toc.xml │ ├── topics_Concepts.xml │ ├── topics_Getting_Started.xml │ ├── topics_References.xml │ └── topics_Tasks.xml ├── org.eclipse.embedcdt.managedbuild.cross.arm.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.txt │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ ├── schema │ │ └── toolchains.exsd │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── embedcdt │ │ │ ├── internal │ │ │ └── managedbuild │ │ │ │ └── cross │ │ │ │ └── arm │ │ │ │ └── core │ │ │ │ └── Activator.java │ │ │ └── managedbuild │ │ │ └── cross │ │ │ └── arm │ │ │ └── core │ │ │ ├── ConfigurationBuildMacroSupplier.java │ │ │ ├── EnvironmentVariableSupplier.java │ │ │ ├── FlashImageManagedOutputNameProvider.java │ │ │ ├── FloatABIManagedOptionHandleValue.java │ │ │ ├── GnuArmPropertyTester.java │ │ │ ├── IDs.java │ │ │ ├── LibrariesCommandGeneratorC.java │ │ │ ├── LibrariesCommandGeneratorCpp.java │ │ │ ├── Option.java │ │ │ ├── SpecsProvider.java │ │ │ ├── ToolchainDefinition.java │ │ │ ├── ToolchainFamilyManagedOptionValueHandler.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ └── DefaultPreferences.java │ └── templates │ │ └── projecttemplates │ │ ├── HelloWorld_CPP_Project │ │ ├── src │ │ │ └── main.cpp │ │ ├── template.properties │ │ └── template.xml │ │ └── HelloWorld_C_Project │ │ ├── src │ │ └── main.c │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.managedbuild.cross.arm.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── elcl16 │ │ │ └── config-tool.gif │ │ └── hardware_chip.png │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── managedbuild │ │ │ └── cross │ │ │ └── arm │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── Messages.java │ │ │ ├── SetCrossCommandWizardPage.java │ │ │ ├── messages.properties │ │ │ ├── preferences │ │ │ ├── GlobalToolchainsPathsPreferencesPage.java │ │ │ └── WorkspaceToolchainsPathsPreferencesPage.java │ │ │ └── properties │ │ │ └── ProjectToolchainsPathPropertiesPage.java │ │ └── managedbuild │ │ └── cross │ │ └── arm │ │ └── ui │ │ ├── SetCrossCommandWizardOperation.java │ │ ├── TabToolchains.java │ │ └── preferences │ │ └── ToolchainsFieldEditor.java ├── org.eclipse.embedcdt.managedbuild.cross.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── managedbuild │ │ │ └── cross │ │ │ └── core │ │ │ └── Activator.java │ │ └── managedbuild │ │ └── cross │ │ └── core │ │ ├── AdditionalToolsManagedOptionValueHandler.java │ │ ├── ClearProviderManagedOptionValueHandler.java │ │ ├── CommonOptionApplicability.java │ │ ├── CompilerCommandLineGenerator.java │ │ ├── DefaultPreferenceInitializer.java │ │ ├── GnuMcuMakefileGenerator.java │ │ ├── GnuMcuPropertyTester.java │ │ ├── LibrariesCommandGenerator.java │ │ ├── LinkerScriptCommandGenerator.java │ │ ├── ManagedOptionValueHandlerDebug.java │ │ ├── OptionApplicabilityWorkaround.java │ │ ├── ToolchainDefinition.java │ │ ├── Utils.java │ │ ├── preferences │ │ ├── DefaultPreferences.java │ │ └── PersistentPreferences.java │ │ └── xpi │ │ ├── CProjectExtraDataManager.java │ │ └── CProjectExtraDataManagerFactory.java ├── org.eclipse.embedcdt.managedbuild.cross.riscv.core │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.txt │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── preferences.ini │ ├── schema │ │ └── toolchains.exsd │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── embedcdt │ │ │ ├── internal │ │ │ └── managedbuild │ │ │ │ └── cross │ │ │ │ └── riscv │ │ │ │ └── core │ │ │ │ └── Activator.java │ │ │ └── managedbuild │ │ │ └── cross │ │ │ └── riscv │ │ │ └── core │ │ │ ├── ConfigurationBuildMacroSupplier.java │ │ │ ├── DisabledOption.java │ │ │ ├── EnvironmentVariableSupplier.java │ │ │ ├── FlashImageManagedOutputNameProvider.java │ │ │ ├── GnuRiscvPropertyTester.java │ │ │ ├── IDs.java │ │ │ ├── LibrariesCommandGeneratorC.java │ │ │ ├── LibrariesCommandGeneratorCpp.java │ │ │ ├── Option.java │ │ │ ├── SpecsProvider.java │ │ │ ├── ToolchainDefinition.java │ │ │ ├── ToolchainFamilyManagedOptionValueHandler.java │ │ │ └── preferences │ │ │ ├── DefaultPreferenceInitializer.java │ │ │ └── DefaultPreferences.java │ └── templates │ │ └── projecttemplates │ │ ├── HelloWorld_CPP_Project │ │ ├── src │ │ │ └── main.cpp │ │ ├── template.properties │ │ └── template.xml │ │ └── HelloWorld_C_Project │ │ ├── src │ │ └── main.c │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.managedbuild.cross.riscv.ui │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── elcl16 │ │ │ └── config-tool.gif │ │ └── hardware_chip.png │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── managedbuild │ │ │ └── cross │ │ │ └── riscv │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── Messages.java │ │ │ ├── SetCrossCommandWizardPage.java │ │ │ ├── messages.properties │ │ │ ├── preferences │ │ │ ├── GlobalToolchainsPathsPreferencesPage.java │ │ │ └── WorkspaceToolchainsPathsPreferencesPage.java │ │ │ └── properties │ │ │ └── ProjectToolchainsPathPropertiesPage.java │ │ └── managedbuild │ │ └── cross │ │ └── riscv │ │ └── ui │ │ ├── SetCrossCommandWizardOperation.java │ │ ├── TabToolchains.java │ │ └── preferences │ │ └── ToolchainsFieldEditor.java ├── org.eclipse.embedcdt.managedbuild.cross.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ └── internal │ │ └── managedbuild │ │ └── cross │ │ └── ui │ │ ├── Activator.java │ │ ├── Messages.java │ │ ├── messages.properties │ │ ├── preferences │ │ ├── BuildToolsGlobalPathsPreferencesPage.java │ │ └── BuildToolsWorkspacePathsPreferencesPage.java │ │ └── properties │ │ └── BuildToolsProjectPathPropertiesPage.java ├── org.eclipse.embedcdt.managedbuild.packs.ui │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── hardware_chip.png │ │ ├── pdficon_small.png │ │ └── pdficon_small@2x.png │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── managedbuild │ │ │ └── packs │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ └── views │ │ │ └── DocsView.java │ │ └── managedbuild │ │ └── packs │ │ └── ui │ │ └── TabDevices.java ├── org.eclipse.embedcdt.packs.core │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.txt │ ├── TODO.txt │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ └── packs_data.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── packs │ │ │ └── core │ │ │ ├── Activator.java │ │ │ └── SystemOutputConsoleStream.java │ │ └── packs │ │ └── core │ │ ├── IConsoleStream.java │ │ ├── IConsolesFactory.java │ │ ├── PackType.java │ │ ├── Preferences.java │ │ ├── PreferencesInitializer.java │ │ ├── Utils.java │ │ ├── data │ │ ├── DataManager.java │ │ ├── DataManagerEvent.java │ │ ├── DataManagerFactory.java │ │ ├── DataUtils.java │ │ ├── DurationMonitor.java │ │ ├── FileNotFoundException.java │ │ ├── IAvailableSupport.java │ │ ├── IDataManagerListener.java │ │ ├── IPacksDataManager.java │ │ ├── IPacksDataManagerFactory.java │ │ ├── JsonGenericParser.java │ │ ├── JsonJsGenericParser.java │ │ ├── PacksDataManagerFactoryProxy.java │ │ ├── PacksStorage.java │ │ ├── Repos.java │ │ ├── SvdGenericParser.java │ │ ├── SvdJsGenericParser.java │ │ ├── UsingDefaultFileException.java │ │ ├── XcdlGenericParser.java │ │ ├── XmlGenericParser.java │ │ ├── XmlJsGenericParser.java │ │ ├── XsvdGenericParser.java │ │ ├── cmsis │ │ │ ├── Index.java │ │ │ ├── PdscGenericParser.java │ │ │ ├── PdscParser.java │ │ │ ├── PdscParserBrief.java │ │ │ ├── PdscParserForBuild.java │ │ │ ├── PdscParserForContent.java │ │ │ ├── PdscParserFull.java │ │ │ ├── PdscTreeParser.java │ │ │ ├── PdscTreeParserForBuild.java │ │ │ └── PdscUtils.java │ │ └── xcdl │ │ │ ├── ContentParser.java │ │ │ ├── ContentParser1.java │ │ │ ├── ContentSerialiser.java │ │ │ ├── InstalledDevicesParser.java │ │ │ ├── InstalledDevicesSerialiser.java │ │ │ └── XcdlUtils.java │ │ ├── jobs │ │ ├── CopyExampleJob.java │ │ ├── InstallJob.java │ │ ├── ParsePdscRunnable.java │ │ └── RemoveJob.java │ │ ├── jstree │ │ ├── AbstractJsTreePreOrderIterator.java │ │ ├── IJsTreeIterator.java │ │ ├── JsArray.java │ │ ├── JsNode.java │ │ ├── JsObject.java │ │ └── README.md │ │ ├── tree │ │ ├── AbstractTreePreOrderIterator.java │ │ ├── ITreeIterator.java │ │ ├── Leaf.java │ │ ├── Node.java │ │ ├── PackNode.java │ │ ├── Property.java │ │ ├── Selector.java │ │ ├── TreePreOrderIterator.java │ │ └── Type.java │ │ └── xml │ │ ├── DocumentParseException.java │ │ ├── GenericParser.java │ │ └── GenericSerialiser.java ├── org.eclipse.embedcdt.packs.ui │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ └── org.eclipse.embedcdt.internal.packs.ui.MessageConsoles.xml │ ├── about.html │ ├── build.properties │ ├── icons │ │ ├── activity.png │ │ ├── ar_obj.gif │ │ ├── binaries_obj.gif │ │ ├── board.png │ │ ├── board_grey.png │ │ ├── bundle.png │ │ ├── c_file_obj.gif │ │ ├── chm.png │ │ ├── codeassist_co.gif │ │ ├── collapseall.png │ │ ├── component.png │ │ ├── config-profile.gif │ │ ├── default_co.png │ │ ├── define_obj.gif │ │ ├── empty_pack_obj.png │ │ ├── exec_dbg_obj.gif │ │ ├── exec_obj.gif │ │ ├── expandall.png │ │ ├── external_browser.png │ │ ├── file_obj.png │ │ ├── genericvariable_obj.png │ │ ├── h_file_obj.gif │ │ ├── hardware_chip.png │ │ ├── hardware_chip_grey.png │ │ ├── hfolder_obj.gif │ │ ├── include_obj.gif │ │ ├── includes_container.gif │ │ ├── info_obj.png │ │ ├── int_obj.gif │ │ ├── jar_obj.png │ │ ├── javaassist_co.png │ │ ├── jdoc_tag_obj.png │ │ ├── jtypeassist_co.png │ │ ├── jtypeassist_co_grey.png │ │ ├── keyword_obj.gif │ │ ├── label_obj.gif │ │ ├── library_obj.png │ │ ├── logical_package_obj.png │ │ ├── memory_view.png │ │ ├── method_private_obj.gif │ │ ├── method_public_obj.gif │ │ ├── methpri_obj.png │ │ ├── methpro_obj.png │ │ ├── outline_co.png │ │ ├── pack_folder.png │ │ ├── package_mode.png │ │ ├── package_obj.png │ │ ├── package_obj_grey.png │ │ ├── packages.png │ │ ├── pdficon_small.png │ │ ├── refresh_nav.gif │ │ ├── removeall.png │ │ ├── s_file_obj.gif │ │ ├── sample.gif │ │ ├── smartmode_co.png │ │ ├── time_obj.png │ │ ├── unknown_obj.gif │ │ └── zip.png │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── packs │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ ├── MessageConsoles.java │ │ │ ├── Messages.java │ │ │ ├── UiConsoleStream.java │ │ │ ├── messages.properties │ │ │ ├── perspectives │ │ │ └── PacksPerspective.java │ │ │ └── views │ │ │ ├── BoardsView.java │ │ │ ├── DevicesView.java │ │ │ ├── KeywordsView.java │ │ │ ├── OutlineView.java │ │ │ └── PacksView.java │ │ └── packs │ │ └── ui │ │ ├── ConsoleStream.java │ │ ├── IconUtils.java │ │ ├── Utils.java │ │ ├── handlers │ │ ├── ShowPerspectiveHandler.java │ │ └── UpdatePacksHandler.java │ │ ├── preferences │ │ ├── FolderPage.java │ │ ├── NewRepoDialog.java │ │ ├── ReposPage.java │ │ ├── SitesConstants.java │ │ └── SitesInitializer.java │ │ └── views │ │ ├── CopyExampleDialog.java │ │ ├── JsNodeViewContentProvider.java │ │ ├── NodeViewContentProvider.java │ │ └── PacksFilter.java ├── org.eclipse.embedcdt.templates.ad.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ └── aducm36x_exe_c_project │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── include │ │ └── cmsis_device.h │ │ ├── ldscripts │ │ └── mem.ld │ │ ├── src │ │ ├── main-101-include-timer.c │ │ ├── main-201-start-timer.c │ │ ├── main-201-start-timer.cpp │ │ ├── main-202-none.c │ │ ├── main-202-retarget.c │ │ ├── main-202-semihosting.c │ │ ├── main-202.c │ │ ├── main-203-timer-sleep.c │ │ └── main-203-timer-sleep.cpp │ │ ├── template.properties │ │ ├── template.xml │ │ └── vendor │ │ ├── device │ │ ├── include │ │ │ ├── ADuCM360.h │ │ │ ├── ADuCM361.h │ │ │ ├── ADuCM362.h │ │ │ ├── ADuCM363.h │ │ │ ├── adi_processor.h │ │ │ ├── sys │ │ │ │ └── platform.h │ │ │ ├── system_ADuCM360.h │ │ │ ├── system_ADuCM361.h │ │ │ ├── system_ADuCM362.h │ │ │ └── system_ADuCM363.h │ │ └── src │ │ │ ├── system_ADuCM360.c │ │ │ ├── system_ADuCM361.c │ │ │ ├── system_ADuCM362.c │ │ │ ├── system_ADuCM363.c │ │ │ ├── vectors_ADuCM360.c │ │ │ ├── vectors_ADuCM361.c │ │ │ ├── vectors_ADuCM362.c │ │ │ └── vectors_ADuCM363.c │ │ └── drivers │ │ ├── include │ │ └── aducm36x │ │ │ ├── AdcLib.h │ │ │ ├── ClkLib.h │ │ │ ├── DacLib.h │ │ │ ├── DasLib.h │ │ │ ├── DioLib.h │ │ │ ├── DmaLib.h │ │ │ ├── FeeLib.h │ │ │ ├── GptLib.h │ │ │ ├── I2cLib.h │ │ │ ├── IexcLib.h │ │ │ ├── IntLib.h │ │ │ ├── PwmLib.h │ │ │ ├── PwrLib.h │ │ │ ├── RstLib.h │ │ │ ├── SpiLib.h │ │ │ ├── UrtLib.h │ │ │ ├── WdtLib.h │ │ │ └── WutLib.h │ │ └── src │ │ └── aducm36x │ │ ├── AdcLib.c │ │ ├── ClkLib.c │ │ ├── DacLib.c │ │ ├── DioLib.c │ │ ├── DmaLib.c │ │ ├── FeeLib.c │ │ ├── GptLib.c │ │ ├── I2cLib.c │ │ ├── IexcLib.c │ │ ├── IntLib.c │ │ ├── PwmLib.c │ │ ├── PwrLib.c │ │ ├── RstLib.c │ │ ├── SpiLib.c │ │ ├── UrtLib.c │ │ ├── WdtLib.c │ │ └── WutLib.c ├── org.eclipse.embedcdt.templates.core │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── embedcdt │ │ │ ├── internal │ │ │ └── templates │ │ │ │ └── core │ │ │ │ └── Activator.java │ │ │ └── templates │ │ │ └── core │ │ │ ├── Utils.java │ │ │ └── processes │ │ │ ├── AddAbsolutePathFiles.java │ │ │ ├── AppendToMBSStringListOptionValues.java │ │ │ ├── AppendToMBSStringOptionValue.java │ │ │ ├── ConditionalAddFiles.java │ │ │ ├── ConditionalAddLiquidFiles.java │ │ │ ├── ConditionalAddSourceFolders.java │ │ │ ├── ConditionalAppendCreate.java │ │ │ ├── ConditionalAppendToMBSStringListOptionValues.java │ │ │ ├── ConditionalAppendToMBSStringOptionValue.java │ │ │ ├── ConditionalCopyFolders.java │ │ │ ├── ConditionalCopyFoldersRecursive.java │ │ │ ├── ConditionalRunCommand.java │ │ │ ├── ConditionalSetLowerCaseProperty.java │ │ │ ├── ConditionalSetMBSBooleanOptionValue.java │ │ │ ├── ConditionalSetMBSStringOptionValue.java │ │ │ ├── ConditionalSetProperty.java │ │ │ ├── ConditionalSetUpperCaseProperty.java │ │ │ ├── SetMBSBooleanOptionValue.java │ │ │ ├── SetMBSStringListOptionValues.java │ │ │ ├── SetMBSStringOptionValue.java │ │ │ ├── SetPropertyIfHasNature.java │ │ │ └── SetPropertyToPluginResource.java │ └── templates │ │ ├── LICENSE │ │ ├── README.txt │ │ └── common │ │ ├── include │ │ ├── led-10-begin.h │ │ ├── led-30-defs.h │ │ ├── led-60-end.h │ │ ├── stm32_assert.h │ │ ├── timer-c.h │ │ └── timer-cpp.h │ │ ├── ldscripts │ │ ├── libs.ld │ │ └── sections.ld │ │ ├── src │ │ ├── main │ │ │ ├── main-100-include.c │ │ │ ├── main-110-include-blinky.c │ │ │ ├── main-110-include-blinky.cpp │ │ │ ├── main-120-none-blinky.c │ │ │ ├── main-120-none-empty.c │ │ │ ├── main-120-retarget-blinky.c │ │ │ ├── main-120-retarget-empty.c │ │ │ ├── main-120-semihosting-blinky.c │ │ │ ├── main-120-semihosting-empty.c │ │ │ ├── main-130-trace-via-m0.c │ │ │ ├── main-130-trace-via.c │ │ │ ├── main-135-clock-comment.c │ │ │ ├── main-140-defs-blinky.c │ │ │ ├── main-140-defs-blinky.cpp │ │ │ ├── main-150-begin.c │ │ │ ├── main-180-none-hello.c │ │ │ ├── main-180-retarget-hello.c │ │ │ ├── main-180-semihosting-hello.c │ │ │ ├── main-190-clock-blinky.c │ │ │ ├── main-190-clock-empty.c │ │ │ ├── main-200-loop-blinky.c │ │ │ ├── main-200-loop-blinky.cpp │ │ │ ├── main-200-loop-empty.c │ │ │ ├── main-200-none-loop-blinky.c │ │ │ ├── main-200-none-loop-blinky.cpp │ │ │ ├── main-200-none-loop-empty.c │ │ │ ├── main-200-retarget-loop-blinky.c │ │ │ ├── main-200-retarget-loop-blinky.cpp │ │ │ ├── main-200-retarget-loop-empty.c │ │ │ ├── main-200-semihosting-loop-blinky.c │ │ │ ├── main-200-semihosting-loop-blinky.cpp │ │ │ ├── main-200-semihosting-loop-empty.c │ │ │ ├── main-210-print.c │ │ │ ├── main-220-loopend.c │ │ │ ├── main-220-none-loopend.c │ │ │ ├── main-220-retarget-loopend.c │ │ │ ├── main-220-semihosting-loopend.c │ │ │ ├── main-230-end.c │ │ │ ├── main-230-none-end.c │ │ │ ├── main-230-retarget-end.c │ │ │ ├── main-230-semihosting-end.c │ │ │ ├── main-include.xcdl.cpp │ │ │ ├── main.xcdl-js.cpp │ │ │ └── main.xcdl.cpp │ │ ├── timer.c │ │ └── timer.cpp │ │ └── system │ │ ├── include │ │ ├── arm │ │ │ └── semihosting.h │ │ ├── cmsis │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ │ ├── cortexm │ │ │ └── exception-handlers.h │ │ └── diag │ │ │ └── trace.h │ │ └── src │ │ ├── cortexm │ │ ├── exception-handlers.c │ │ ├── initialize-hardware.c │ │ └── reset-hardware.c │ │ ├── diag │ │ ├── trace-impl.c │ │ └── trace.c │ │ ├── newlib │ │ ├── README.txt │ │ ├── assert.c │ │ ├── cxx.cpp │ │ ├── exit.c │ │ ├── sbrk.c │ │ ├── startup.c │ │ └── syscalls.c │ │ └── write.c ├── org.eclipse.embedcdt.templates.cortexm.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ └── cortexm_project │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── Vendor │ │ ├── DEVICE │ │ │ ├── include │ │ │ │ ├── DEVICE.h │ │ │ │ ├── README_DEVICE.txt │ │ │ │ └── system_DEVICE.h │ │ │ └── src │ │ │ │ ├── README_DEVICE.txt │ │ │ │ ├── system_DEVICE.c │ │ │ │ └── vectors_DEVICE.c │ │ └── DRIVERS │ │ │ ├── include │ │ │ └── README_DRIVERS.txt │ │ │ └── src │ │ │ └── README_DRIVERS.txt │ │ ├── include │ │ └── cmsis_device.h │ │ ├── ldscripts │ │ └── mem.ld │ │ ├── src │ │ ├── main-10.c │ │ ├── main-15.c │ │ ├── main-20-timer-init.c │ │ ├── main-20-timer-init.cpp │ │ ├── main-30-none.c │ │ ├── main-30-retarget.c │ │ ├── main-30-semihosting.c │ │ ├── main-30.c │ │ ├── main-40-timer-sleep.c │ │ ├── main-40-timer-sleep.cpp │ │ ├── main-50-none.c │ │ ├── main-50-retarget.c │ │ ├── main-50-semihosting.c │ │ └── main-50.c │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.templates.freescale.pe.ui │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── embedcdt │ │ │ ├── internal │ │ │ └── templates │ │ │ │ └── freescale │ │ │ │ └── pe │ │ │ │ └── ui │ │ │ │ ├── Activator.java │ │ │ │ └── WizardPage.java │ │ │ └── templates │ │ │ └── freescale │ │ │ └── pe │ │ │ └── ui │ │ │ ├── ExtraPagesProvider.java │ │ │ ├── PEW.java │ │ │ ├── WizardPageOperation.java │ │ │ └── processes │ │ │ └── RunProcessorExpertWizard.java │ └── templates │ │ └── pex_c_project │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.templates.freescale.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ ├── klxx_exe_c_project │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── include │ │ │ ├── common-MKL25Z4.h │ │ │ ├── common-MKL46Z4.h │ │ │ ├── freedom-MKL25Z4.h │ │ │ ├── freedom-MKL46Z4.h │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs-MKL25Z4.h │ │ │ ├── led-40-defs-MKL46Z4.h │ │ │ ├── led-50-c.h │ │ │ └── led-50-cpp.h │ │ ├── ldscripts │ │ │ └── mem.ld │ │ ├── src │ │ │ ├── led.c │ │ │ └── led.cpp │ │ ├── template.properties │ │ └── template.xml │ │ └── micro-os-plus │ │ ├── kl25-sc │ │ ├── include │ │ │ └── kl25-sc │ │ │ │ ├── MemMapPtr_KL25Z4.h │ │ │ │ ├── README.txt │ │ │ │ ├── adc16.h │ │ │ │ ├── cmp.h │ │ │ │ ├── i2c.h │ │ │ │ ├── llwu.h │ │ │ │ ├── lptmr.h │ │ │ │ ├── mcg.h │ │ │ │ ├── mcg_readme.txt │ │ │ │ ├── pmc.h │ │ │ │ ├── rcm.h │ │ │ │ ├── rtc.h │ │ │ │ ├── smc.h │ │ │ │ ├── uart.h │ │ │ │ └── vectors.h │ │ └── src │ │ │ └── kl25-sc │ │ │ ├── README.txt │ │ │ ├── adc16.c │ │ │ ├── cmp.c │ │ │ ├── i2c.c │ │ │ ├── llwu.c │ │ │ ├── lptmr.c │ │ │ ├── mcg.c │ │ │ ├── pmc.c │ │ │ ├── rcm.c │ │ │ ├── retarget-layer.c │ │ │ ├── rtc.c │ │ │ ├── smc.c │ │ │ └── uart.c │ │ ├── kl46-sc │ │ ├── include │ │ │ └── kl46-sc │ │ │ │ ├── MemMapPtr_KL46Z4.h │ │ │ │ ├── README.txt │ │ │ │ ├── adc16.h │ │ │ │ ├── cmp.h │ │ │ │ ├── llwu.h │ │ │ │ ├── lptmr.h │ │ │ │ ├── mcg.h │ │ │ │ ├── mcg_readme.txt │ │ │ │ ├── pmc.h │ │ │ │ ├── rcm.h │ │ │ │ ├── rtc.h │ │ │ │ ├── smc.h │ │ │ │ ├── uart.h │ │ │ │ └── vectors.h │ │ └── src │ │ │ └── kl46-sc │ │ │ ├── README.txt │ │ │ ├── adc16.c │ │ │ ├── cmp.c │ │ │ ├── llwu.c │ │ │ ├── lptmr.c │ │ │ ├── mcg.c │ │ │ ├── pmc.c │ │ │ ├── rcm.c │ │ │ ├── retarget-layer.c │ │ │ ├── rtc.c │ │ │ ├── smc.c │ │ │ └── uart.c │ │ └── klxx │ │ ├── include │ │ └── cmsis │ │ │ ├── MKL25Z4.h │ │ │ ├── MKL46Z4.h │ │ │ ├── README_DEVICE_MKL25Z4.txt │ │ │ ├── README_DEVICE_MKL46Z4.txt │ │ │ ├── cmsis_device.h │ │ │ ├── system_MKL25Z4.h │ │ │ └── system_MKL46Z4.h │ │ └── src │ │ └── cmsis │ │ ├── README_DEVICE_MKL25Z4.txt │ │ ├── README_DEVICE_MKL46Z4.txt │ │ ├── system_MKL25Z4.c │ │ ├── system_MKL46Z4.c │ │ ├── vectors_MKL25Z4.c │ │ └── vectors_MKL46Z4.c ├── org.eclipse.embedcdt.templates.sifive.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.md │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ └── sifive_exe_c_project │ │ ├── LICENSE │ │ ├── README.md │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.templates.stm.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── common │ │ └── src │ │ │ ├── led-10-begin.h │ │ │ ├── led-30-defs.h │ │ │ ├── led-60-end.h │ │ │ ├── led-include.xcdl.h │ │ │ ├── led.xcdl.c │ │ │ ├── led.xcdl.cpp │ │ │ └── led.xcdl.h │ │ ├── micro-os-plus │ │ ├── README-ORIGIN.md │ │ ├── stm32f0-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f0-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f0xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f0xx_hal.h │ │ │ │ │ ├── stm32f0xx_hal_adc.h │ │ │ │ │ ├── stm32f0xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f0xx_hal_can.h │ │ │ │ │ ├── stm32f0xx_hal_cec.h │ │ │ │ │ ├── stm32f0xx_hal_comp.h │ │ │ │ │ ├── stm32f0xx_hal_conf_template.h │ │ │ │ │ ├── stm32f0xx_hal_cortex.h │ │ │ │ │ ├── stm32f0xx_hal_crc.h │ │ │ │ │ ├── stm32f0xx_hal_crc_ex.h │ │ │ │ │ ├── stm32f0xx_hal_dac.h │ │ │ │ │ ├── stm32f0xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f0xx_hal_def.h │ │ │ │ │ ├── stm32f0xx_hal_dma.h │ │ │ │ │ ├── stm32f0xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f0xx_hal_exti.h │ │ │ │ │ ├── stm32f0xx_hal_flash.h │ │ │ │ │ ├── stm32f0xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f0xx_hal_gpio.h │ │ │ │ │ ├── stm32f0xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f0xx_hal_i2c.h │ │ │ │ │ ├── stm32f0xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32f0xx_hal_i2s.h │ │ │ │ │ ├── stm32f0xx_hal_irda.h │ │ │ │ │ ├── stm32f0xx_hal_irda_ex.h │ │ │ │ │ ├── stm32f0xx_hal_iwdg.h │ │ │ │ │ ├── stm32f0xx_hal_pcd.h │ │ │ │ │ ├── stm32f0xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f0xx_hal_pwr.h │ │ │ │ │ ├── stm32f0xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32f0xx_hal_rcc.h │ │ │ │ │ ├── stm32f0xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f0xx_hal_rtc.h │ │ │ │ │ ├── stm32f0xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f0xx_hal_smartcard.h │ │ │ │ │ ├── stm32f0xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32f0xx_hal_smbus.h │ │ │ │ │ ├── stm32f0xx_hal_spi.h │ │ │ │ │ ├── stm32f0xx_hal_spi_ex.h │ │ │ │ │ ├── stm32f0xx_hal_tim.h │ │ │ │ │ ├── stm32f0xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f0xx_hal_tsc.h │ │ │ │ │ ├── stm32f0xx_hal_uart.h │ │ │ │ │ ├── stm32f0xx_hal_uart_ex.h │ │ │ │ │ ├── stm32f0xx_hal_usart.h │ │ │ │ │ ├── stm32f0xx_hal_usart_ex.h │ │ │ │ │ ├── stm32f0xx_hal_wwdg.h │ │ │ │ │ ├── stm32f0xx_ll_adc.h │ │ │ │ │ ├── stm32f0xx_ll_bus.h │ │ │ │ │ ├── stm32f0xx_ll_comp.h │ │ │ │ │ ├── stm32f0xx_ll_cortex.h │ │ │ │ │ ├── stm32f0xx_ll_crc.h │ │ │ │ │ ├── stm32f0xx_ll_crs.h │ │ │ │ │ ├── stm32f0xx_ll_dac.h │ │ │ │ │ ├── stm32f0xx_ll_dma.h │ │ │ │ │ ├── stm32f0xx_ll_exti.h │ │ │ │ │ ├── stm32f0xx_ll_gpio.h │ │ │ │ │ ├── stm32f0xx_ll_i2c.h │ │ │ │ │ ├── stm32f0xx_ll_iwdg.h │ │ │ │ │ ├── stm32f0xx_ll_pwr.h │ │ │ │ │ ├── stm32f0xx_ll_rcc.h │ │ │ │ │ ├── stm32f0xx_ll_rtc.h │ │ │ │ │ ├── stm32f0xx_ll_spi.h │ │ │ │ │ ├── stm32f0xx_ll_system.h │ │ │ │ │ ├── stm32f0xx_ll_tim.h │ │ │ │ │ ├── stm32f0xx_ll_usart.h │ │ │ │ │ ├── stm32f0xx_ll_usb.h │ │ │ │ │ ├── stm32f0xx_ll_utils.h │ │ │ │ │ └── stm32f0xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f0-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f0xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f0xx_hal.c │ │ │ │ ├── stm32f0xx_hal_adc.c │ │ │ │ ├── stm32f0xx_hal_adc_ex.c │ │ │ │ ├── stm32f0xx_hal_can.c │ │ │ │ ├── stm32f0xx_hal_cec.c │ │ │ │ ├── stm32f0xx_hal_comp.c │ │ │ │ ├── stm32f0xx_hal_cortex.c │ │ │ │ ├── stm32f0xx_hal_crc.c │ │ │ │ ├── stm32f0xx_hal_crc_ex.c │ │ │ │ ├── stm32f0xx_hal_dac.c │ │ │ │ ├── stm32f0xx_hal_dac_ex.c │ │ │ │ ├── stm32f0xx_hal_dma.c │ │ │ │ ├── stm32f0xx_hal_exti.c │ │ │ │ ├── stm32f0xx_hal_flash.c │ │ │ │ ├── stm32f0xx_hal_flash_ex.c │ │ │ │ ├── stm32f0xx_hal_gpio.c │ │ │ │ ├── stm32f0xx_hal_i2c.c │ │ │ │ ├── stm32f0xx_hal_i2c_ex.c │ │ │ │ ├── stm32f0xx_hal_i2s.c │ │ │ │ ├── stm32f0xx_hal_irda.c │ │ │ │ ├── stm32f0xx_hal_iwdg.c │ │ │ │ ├── stm32f0xx_hal_msp_template.c │ │ │ │ ├── stm32f0xx_hal_pcd.c │ │ │ │ ├── stm32f0xx_hal_pcd_ex.c │ │ │ │ ├── stm32f0xx_hal_pwr.c │ │ │ │ ├── stm32f0xx_hal_pwr_ex.c │ │ │ │ ├── stm32f0xx_hal_rcc.c │ │ │ │ ├── stm32f0xx_hal_rcc_ex.c │ │ │ │ ├── stm32f0xx_hal_rtc.c │ │ │ │ ├── stm32f0xx_hal_rtc_ex.c │ │ │ │ ├── stm32f0xx_hal_smartcard.c │ │ │ │ ├── stm32f0xx_hal_smartcard_ex.c │ │ │ │ ├── stm32f0xx_hal_smbus.c │ │ │ │ ├── stm32f0xx_hal_spi.c │ │ │ │ ├── stm32f0xx_hal_spi_ex.c │ │ │ │ ├── stm32f0xx_hal_tim.c │ │ │ │ ├── stm32f0xx_hal_tim_ex.c │ │ │ │ ├── stm32f0xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f0xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f0xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f0xx_hal_tsc.c │ │ │ │ ├── stm32f0xx_hal_uart.c │ │ │ │ ├── stm32f0xx_hal_uart_ex.c │ │ │ │ ├── stm32f0xx_hal_usart.c │ │ │ │ ├── stm32f0xx_hal_usart_ex.c │ │ │ │ ├── stm32f0xx_hal_wwdg.c │ │ │ │ ├── stm32f0xx_ll_adc.c │ │ │ │ ├── stm32f0xx_ll_comp.c │ │ │ │ ├── stm32f0xx_ll_crc.c │ │ │ │ ├── stm32f0xx_ll_crs.c │ │ │ │ ├── stm32f0xx_ll_dac.c │ │ │ │ ├── stm32f0xx_ll_dma.c │ │ │ │ ├── stm32f0xx_ll_exti.c │ │ │ │ ├── stm32f0xx_ll_gpio.c │ │ │ │ ├── stm32f0xx_ll_i2c.c │ │ │ │ ├── stm32f0xx_ll_pwr.c │ │ │ │ ├── stm32f0xx_ll_rcc.c │ │ │ │ ├── stm32f0xx_ll_rtc.c │ │ │ │ ├── stm32f0xx_ll_spi.c │ │ │ │ ├── stm32f0xx_ll_tim.c │ │ │ │ ├── stm32f0xx_ll_usart.c │ │ │ │ ├── stm32f0xx_ll_usb.c │ │ │ │ └── stm32f0xx_ll_utils.c │ │ ├── stm32f0 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── cmsis │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── cmsis_device.h │ │ │ │ │ ├── stm32f030x6.h │ │ │ │ │ ├── stm32f030x8.h │ │ │ │ │ ├── stm32f030xc.h │ │ │ │ │ ├── stm32f031x6.h │ │ │ │ │ ├── stm32f038xx.h │ │ │ │ │ ├── stm32f042x6.h │ │ │ │ │ ├── stm32f048xx.h │ │ │ │ │ ├── stm32f051x8.h │ │ │ │ │ ├── stm32f058xx.h │ │ │ │ │ ├── stm32f070x6.h │ │ │ │ │ ├── stm32f070xb.h │ │ │ │ │ ├── stm32f071xb.h │ │ │ │ │ ├── stm32f072xb.h │ │ │ │ │ ├── stm32f078xx.h │ │ │ │ │ ├── stm32f091xc.h │ │ │ │ │ ├── stm32f098xx.h │ │ │ │ │ ├── stm32f0xx.h │ │ │ │ │ └── system_stm32f0xx.h │ │ │ └── src │ │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── system_stm32f0xx.c │ │ │ │ ├── vectors_stm32f030x6.c │ │ │ │ ├── vectors_stm32f030x8.c │ │ │ │ ├── vectors_stm32f030xc.c │ │ │ │ ├── vectors_stm32f031x6.c │ │ │ │ ├── vectors_stm32f038xx.c │ │ │ │ ├── vectors_stm32f042x6.c │ │ │ │ ├── vectors_stm32f048xx.c │ │ │ │ ├── vectors_stm32f051x8.c │ │ │ │ ├── vectors_stm32f058xx.c │ │ │ │ ├── vectors_stm32f070x6.c │ │ │ │ ├── vectors_stm32f070xb.c │ │ │ │ ├── vectors_stm32f071xb.c │ │ │ │ ├── vectors_stm32f072xb.c │ │ │ │ ├── vectors_stm32f078xx.c │ │ │ │ ├── vectors_stm32f091xc.c │ │ │ │ └── vectors_stm32f098xx.c │ │ ├── stm32f1-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f1-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ ├── stm32f1xx_hal_can_ex_legacy.h │ │ │ │ │ └── stm32f1xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f1xx_hal.h │ │ │ │ │ ├── stm32f1xx_hal_adc.h │ │ │ │ │ ├── stm32f1xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f1xx_hal_can.h │ │ │ │ │ ├── stm32f1xx_hal_cec.h │ │ │ │ │ ├── stm32f1xx_hal_conf_template.h │ │ │ │ │ ├── stm32f1xx_hal_cortex.h │ │ │ │ │ ├── stm32f1xx_hal_crc.h │ │ │ │ │ ├── stm32f1xx_hal_dac.h │ │ │ │ │ ├── stm32f1xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f1xx_hal_def.h │ │ │ │ │ ├── stm32f1xx_hal_dma.h │ │ │ │ │ ├── stm32f1xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f1xx_hal_eth.h │ │ │ │ │ ├── stm32f1xx_hal_exti.h │ │ │ │ │ ├── stm32f1xx_hal_flash.h │ │ │ │ │ ├── stm32f1xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f1xx_hal_gpio.h │ │ │ │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f1xx_hal_hcd.h │ │ │ │ │ ├── stm32f1xx_hal_i2c.h │ │ │ │ │ ├── stm32f1xx_hal_i2s.h │ │ │ │ │ ├── stm32f1xx_hal_irda.h │ │ │ │ │ ├── stm32f1xx_hal_iwdg.h │ │ │ │ │ ├── stm32f1xx_hal_mmc.h │ │ │ │ │ ├── stm32f1xx_hal_nand.h │ │ │ │ │ ├── stm32f1xx_hal_nor.h │ │ │ │ │ ├── stm32f1xx_hal_pccard.h │ │ │ │ │ ├── stm32f1xx_hal_pcd.h │ │ │ │ │ ├── stm32f1xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f1xx_hal_pwr.h │ │ │ │ │ ├── stm32f1xx_hal_rcc.h │ │ │ │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f1xx_hal_rtc.h │ │ │ │ │ ├── stm32f1xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f1xx_hal_sd.h │ │ │ │ │ ├── stm32f1xx_hal_smartcard.h │ │ │ │ │ ├── stm32f1xx_hal_spi.h │ │ │ │ │ ├── stm32f1xx_hal_sram.h │ │ │ │ │ ├── stm32f1xx_hal_tim.h │ │ │ │ │ ├── stm32f1xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f1xx_hal_uart.h │ │ │ │ │ ├── stm32f1xx_hal_usart.h │ │ │ │ │ ├── stm32f1xx_hal_wwdg.h │ │ │ │ │ ├── stm32f1xx_ll_adc.h │ │ │ │ │ ├── stm32f1xx_ll_bus.h │ │ │ │ │ ├── stm32f1xx_ll_cortex.h │ │ │ │ │ ├── stm32f1xx_ll_crc.h │ │ │ │ │ ├── stm32f1xx_ll_dac.h │ │ │ │ │ ├── stm32f1xx_ll_dma.h │ │ │ │ │ ├── stm32f1xx_ll_exti.h │ │ │ │ │ ├── stm32f1xx_ll_fsmc.h │ │ │ │ │ ├── stm32f1xx_ll_gpio.h │ │ │ │ │ ├── stm32f1xx_ll_i2c.h │ │ │ │ │ ├── stm32f1xx_ll_iwdg.h │ │ │ │ │ ├── stm32f1xx_ll_pwr.h │ │ │ │ │ ├── stm32f1xx_ll_rcc.h │ │ │ │ │ ├── stm32f1xx_ll_rtc.h │ │ │ │ │ ├── stm32f1xx_ll_sdmmc.h │ │ │ │ │ ├── stm32f1xx_ll_spi.h │ │ │ │ │ ├── stm32f1xx_ll_system.h │ │ │ │ │ ├── stm32f1xx_ll_tim.h │ │ │ │ │ ├── stm32f1xx_ll_usart.h │ │ │ │ │ ├── stm32f1xx_ll_usb.h │ │ │ │ │ ├── stm32f1xx_ll_utils.h │ │ │ │ │ └── stm32f1xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f1-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f1xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f1xx_hal.c │ │ │ │ ├── stm32f1xx_hal_adc.c │ │ │ │ ├── stm32f1xx_hal_adc_ex.c │ │ │ │ ├── stm32f1xx_hal_can.c │ │ │ │ ├── stm32f1xx_hal_cec.c │ │ │ │ ├── stm32f1xx_hal_cortex.c │ │ │ │ ├── stm32f1xx_hal_crc.c │ │ │ │ ├── stm32f1xx_hal_dac.c │ │ │ │ ├── stm32f1xx_hal_dac_ex.c │ │ │ │ ├── stm32f1xx_hal_dma.c │ │ │ │ ├── stm32f1xx_hal_eth.c │ │ │ │ ├── stm32f1xx_hal_exti.c │ │ │ │ ├── stm32f1xx_hal_flash.c │ │ │ │ ├── stm32f1xx_hal_flash_ex.c │ │ │ │ ├── stm32f1xx_hal_gpio.c │ │ │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ │ │ ├── stm32f1xx_hal_hcd.c │ │ │ │ ├── stm32f1xx_hal_i2c.c │ │ │ │ ├── stm32f1xx_hal_i2s.c │ │ │ │ ├── stm32f1xx_hal_irda.c │ │ │ │ ├── stm32f1xx_hal_iwdg.c │ │ │ │ ├── stm32f1xx_hal_mmc.c │ │ │ │ ├── stm32f1xx_hal_msp_template.c │ │ │ │ ├── stm32f1xx_hal_nand.c │ │ │ │ ├── stm32f1xx_hal_nor.c │ │ │ │ ├── stm32f1xx_hal_pccard.c │ │ │ │ ├── stm32f1xx_hal_pcd.c │ │ │ │ ├── stm32f1xx_hal_pcd_ex.c │ │ │ │ ├── stm32f1xx_hal_pwr.c │ │ │ │ ├── stm32f1xx_hal_rcc.c │ │ │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ │ │ ├── stm32f1xx_hal_rtc.c │ │ │ │ ├── stm32f1xx_hal_rtc_ex.c │ │ │ │ ├── stm32f1xx_hal_sd.c │ │ │ │ ├── stm32f1xx_hal_smartcard.c │ │ │ │ ├── stm32f1xx_hal_spi.c │ │ │ │ ├── stm32f1xx_hal_sram.c │ │ │ │ ├── stm32f1xx_hal_tim.c │ │ │ │ ├── stm32f1xx_hal_tim_ex.c │ │ │ │ ├── stm32f1xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f1xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f1xx_hal_uart.c │ │ │ │ ├── stm32f1xx_hal_usart.c │ │ │ │ ├── stm32f1xx_hal_wwdg.c │ │ │ │ ├── stm32f1xx_ll_adc.c │ │ │ │ ├── stm32f1xx_ll_crc.c │ │ │ │ ├── stm32f1xx_ll_dac.c │ │ │ │ ├── stm32f1xx_ll_dma.c │ │ │ │ ├── stm32f1xx_ll_exti.c │ │ │ │ ├── stm32f1xx_ll_fsmc.c │ │ │ │ ├── stm32f1xx_ll_gpio.c │ │ │ │ ├── stm32f1xx_ll_i2c.c │ │ │ │ ├── stm32f1xx_ll_pwr.c │ │ │ │ ├── stm32f1xx_ll_rcc.c │ │ │ │ ├── stm32f1xx_ll_rtc.c │ │ │ │ ├── stm32f1xx_ll_sdmmc.c │ │ │ │ ├── stm32f1xx_ll_spi.c │ │ │ │ ├── stm32f1xx_ll_tim.c │ │ │ │ ├── stm32f1xx_ll_usart.c │ │ │ │ ├── stm32f1xx_ll_usb.c │ │ │ │ └── stm32f1xx_ll_utils.c │ │ ├── stm32f1 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── cmsis │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── cmsis_device.h │ │ │ │ │ ├── stm32f100xb.h │ │ │ │ │ ├── stm32f100xe.h │ │ │ │ │ ├── stm32f101x6.h │ │ │ │ │ ├── stm32f101xb.h │ │ │ │ │ ├── stm32f101xe.h │ │ │ │ │ ├── stm32f101xg.h │ │ │ │ │ ├── stm32f102x6.h │ │ │ │ │ ├── stm32f102xb.h │ │ │ │ │ ├── stm32f103x6.h │ │ │ │ │ ├── stm32f103xb.h │ │ │ │ │ ├── stm32f103xe.h │ │ │ │ │ ├── stm32f103xg.h │ │ │ │ │ ├── stm32f105xc.h │ │ │ │ │ ├── stm32f107xc.h │ │ │ │ │ ├── stm32f1xx.h │ │ │ │ │ └── system_stm32f1xx.h │ │ │ └── src │ │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── system_stm32f1xx.c │ │ │ │ ├── vectors_stm32f100xb.c │ │ │ │ ├── vectors_stm32f100xe.c │ │ │ │ ├── vectors_stm32f101x6.c │ │ │ │ ├── vectors_stm32f101xb.c │ │ │ │ ├── vectors_stm32f101xe.c │ │ │ │ ├── vectors_stm32f101xg.c │ │ │ │ ├── vectors_stm32f102x6.c │ │ │ │ ├── vectors_stm32f102xb.c │ │ │ │ ├── vectors_stm32f103x6.c │ │ │ │ ├── vectors_stm32f103xb.c │ │ │ │ ├── vectors_stm32f103xe.c │ │ │ │ ├── vectors_stm32f103xg.c │ │ │ │ ├── vectors_stm32f105xc.c │ │ │ │ └── vectors_stm32f107xc.c │ │ ├── stm32f2-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f2-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f2xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f2xx_hal.h │ │ │ │ │ ├── stm32f2xx_hal_adc.h │ │ │ │ │ ├── stm32f2xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f2xx_hal_can.h │ │ │ │ │ ├── stm32f2xx_hal_conf_template.h │ │ │ │ │ ├── stm32f2xx_hal_cortex.h │ │ │ │ │ ├── stm32f2xx_hal_crc.h │ │ │ │ │ ├── stm32f2xx_hal_cryp.h │ │ │ │ │ ├── stm32f2xx_hal_dac.h │ │ │ │ │ ├── stm32f2xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f2xx_hal_dcmi.h │ │ │ │ │ ├── stm32f2xx_hal_dcmi_ex.h │ │ │ │ │ ├── stm32f2xx_hal_def.h │ │ │ │ │ ├── stm32f2xx_hal_dma.h │ │ │ │ │ ├── stm32f2xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f2xx_hal_eth.h │ │ │ │ │ ├── stm32f2xx_hal_exti.h │ │ │ │ │ ├── stm32f2xx_hal_flash.h │ │ │ │ │ ├── stm32f2xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f2xx_hal_gpio.h │ │ │ │ │ ├── stm32f2xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f2xx_hal_hash.h │ │ │ │ │ ├── stm32f2xx_hal_hcd.h │ │ │ │ │ ├── stm32f2xx_hal_i2c.h │ │ │ │ │ ├── stm32f2xx_hal_i2s.h │ │ │ │ │ ├── stm32f2xx_hal_irda.h │ │ │ │ │ ├── stm32f2xx_hal_iwdg.h │ │ │ │ │ ├── stm32f2xx_hal_mmc.h │ │ │ │ │ ├── stm32f2xx_hal_nand.h │ │ │ │ │ ├── stm32f2xx_hal_nor.h │ │ │ │ │ ├── stm32f2xx_hal_pccard.h │ │ │ │ │ ├── stm32f2xx_hal_pcd.h │ │ │ │ │ ├── stm32f2xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f2xx_hal_pwr.h │ │ │ │ │ ├── stm32f2xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32f2xx_hal_rcc.h │ │ │ │ │ ├── stm32f2xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f2xx_hal_rng.h │ │ │ │ │ ├── stm32f2xx_hal_rtc.h │ │ │ │ │ ├── stm32f2xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f2xx_hal_sd.h │ │ │ │ │ ├── stm32f2xx_hal_smartcard.h │ │ │ │ │ ├── stm32f2xx_hal_spi.h │ │ │ │ │ ├── stm32f2xx_hal_sram.h │ │ │ │ │ ├── stm32f2xx_hal_tim.h │ │ │ │ │ ├── stm32f2xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f2xx_hal_uart.h │ │ │ │ │ ├── stm32f2xx_hal_usart.h │ │ │ │ │ ├── stm32f2xx_hal_wwdg.h │ │ │ │ │ ├── stm32f2xx_ll_adc.h │ │ │ │ │ ├── stm32f2xx_ll_bus.h │ │ │ │ │ ├── stm32f2xx_ll_cortex.h │ │ │ │ │ ├── stm32f2xx_ll_crc.h │ │ │ │ │ ├── stm32f2xx_ll_dac.h │ │ │ │ │ ├── stm32f2xx_ll_dma.h │ │ │ │ │ ├── stm32f2xx_ll_exti.h │ │ │ │ │ ├── stm32f2xx_ll_fsmc.h │ │ │ │ │ ├── stm32f2xx_ll_gpio.h │ │ │ │ │ ├── stm32f2xx_ll_i2c.h │ │ │ │ │ ├── stm32f2xx_ll_iwdg.h │ │ │ │ │ ├── stm32f2xx_ll_pwr.h │ │ │ │ │ ├── stm32f2xx_ll_rcc.h │ │ │ │ │ ├── stm32f2xx_ll_rng.h │ │ │ │ │ ├── stm32f2xx_ll_rtc.h │ │ │ │ │ ├── stm32f2xx_ll_sdmmc.h │ │ │ │ │ ├── stm32f2xx_ll_spi.h │ │ │ │ │ ├── stm32f2xx_ll_system.h │ │ │ │ │ ├── stm32f2xx_ll_tim.h │ │ │ │ │ ├── stm32f2xx_ll_usart.h │ │ │ │ │ ├── stm32f2xx_ll_usb.h │ │ │ │ │ ├── stm32f2xx_ll_utils.h │ │ │ │ │ └── stm32f2xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f2-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f2xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f2xx_hal.c │ │ │ │ ├── stm32f2xx_hal_adc.c │ │ │ │ ├── stm32f2xx_hal_adc_ex.c │ │ │ │ ├── stm32f2xx_hal_can.c │ │ │ │ ├── stm32f2xx_hal_cortex.c │ │ │ │ ├── stm32f2xx_hal_crc.c │ │ │ │ ├── stm32f2xx_hal_cryp.c │ │ │ │ ├── stm32f2xx_hal_dac.c │ │ │ │ ├── stm32f2xx_hal_dac_ex.c │ │ │ │ ├── stm32f2xx_hal_dcmi.c │ │ │ │ ├── stm32f2xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f2xx_hal_dma.c │ │ │ │ ├── stm32f2xx_hal_dma_ex.c │ │ │ │ ├── stm32f2xx_hal_eth.c │ │ │ │ ├── stm32f2xx_hal_exti.c │ │ │ │ ├── stm32f2xx_hal_flash.c │ │ │ │ ├── stm32f2xx_hal_flash_ex.c │ │ │ │ ├── stm32f2xx_hal_gpio.c │ │ │ │ ├── stm32f2xx_hal_hash.c │ │ │ │ ├── stm32f2xx_hal_hcd.c │ │ │ │ ├── stm32f2xx_hal_i2c.c │ │ │ │ ├── stm32f2xx_hal_i2s.c │ │ │ │ ├── stm32f2xx_hal_irda.c │ │ │ │ ├── stm32f2xx_hal_iwdg.c │ │ │ │ ├── stm32f2xx_hal_mmc.c │ │ │ │ ├── stm32f2xx_hal_msp_template.c │ │ │ │ ├── stm32f2xx_hal_nand.c │ │ │ │ ├── stm32f2xx_hal_nor.c │ │ │ │ ├── stm32f2xx_hal_pccard.c │ │ │ │ ├── stm32f2xx_hal_pcd.c │ │ │ │ ├── stm32f2xx_hal_pcd_ex.c │ │ │ │ ├── stm32f2xx_hal_pwr.c │ │ │ │ ├── stm32f2xx_hal_pwr_ex.c │ │ │ │ ├── stm32f2xx_hal_rcc.c │ │ │ │ ├── stm32f2xx_hal_rcc_ex.c │ │ │ │ ├── stm32f2xx_hal_rng.c │ │ │ │ ├── stm32f2xx_hal_rtc.c │ │ │ │ ├── stm32f2xx_hal_rtc_ex.c │ │ │ │ ├── stm32f2xx_hal_sd.c │ │ │ │ ├── stm32f2xx_hal_smartcard.c │ │ │ │ ├── stm32f2xx_hal_spi.c │ │ │ │ ├── stm32f2xx_hal_sram.c │ │ │ │ ├── stm32f2xx_hal_tim.c │ │ │ │ ├── stm32f2xx_hal_tim_ex.c │ │ │ │ ├── stm32f2xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f2xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f2xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f2xx_hal_uart.c │ │ │ │ ├── stm32f2xx_hal_usart.c │ │ │ │ ├── stm32f2xx_hal_wwdg.c │ │ │ │ ├── stm32f2xx_ll_adc.c │ │ │ │ ├── stm32f2xx_ll_crc.c │ │ │ │ ├── stm32f2xx_ll_dac.c │ │ │ │ ├── stm32f2xx_ll_dma.c │ │ │ │ ├── stm32f2xx_ll_exti.c │ │ │ │ ├── stm32f2xx_ll_fsmc.c │ │ │ │ ├── stm32f2xx_ll_gpio.c │ │ │ │ ├── stm32f2xx_ll_i2c.c │ │ │ │ ├── stm32f2xx_ll_pwr.c │ │ │ │ ├── stm32f2xx_ll_rcc.c │ │ │ │ ├── stm32f2xx_ll_rng.c │ │ │ │ ├── stm32f2xx_ll_rtc.c │ │ │ │ ├── stm32f2xx_ll_sdmmc.c │ │ │ │ ├── stm32f2xx_ll_spi.c │ │ │ │ ├── stm32f2xx_ll_tim.c │ │ │ │ ├── stm32f2xx_ll_usart.c │ │ │ │ ├── stm32f2xx_ll_usb.c │ │ │ │ └── stm32f2xx_ll_utils.c │ │ ├── stm32f2 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── cmsis │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── cmsis_device.h │ │ │ │ │ ├── stm32f205xx.h │ │ │ │ │ ├── stm32f207xx.h │ │ │ │ │ ├── stm32f215xx.h │ │ │ │ │ ├── stm32f217xx.h │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ └── system_stm32f2xx.h │ │ │ └── src │ │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── system_stm32f2xx.c │ │ │ │ ├── vectors_stm32f205xx.c │ │ │ │ ├── vectors_stm32f207xx.c │ │ │ │ ├── vectors_stm32f215xx.c │ │ │ │ └── vectors_stm32f217xx.c │ │ ├── stm32f3-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f3-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f3xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f3xx_hal.h │ │ │ │ │ ├── stm32f3xx_hal_adc.h │ │ │ │ │ ├── stm32f3xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f3xx_hal_can.h │ │ │ │ │ ├── stm32f3xx_hal_cec.h │ │ │ │ │ ├── stm32f3xx_hal_comp.h │ │ │ │ │ ├── stm32f3xx_hal_comp_ex.h │ │ │ │ │ ├── stm32f3xx_hal_conf_template.h │ │ │ │ │ ├── stm32f3xx_hal_cortex.h │ │ │ │ │ ├── stm32f3xx_hal_crc.h │ │ │ │ │ ├── stm32f3xx_hal_crc_ex.h │ │ │ │ │ ├── stm32f3xx_hal_dac.h │ │ │ │ │ ├── stm32f3xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f3xx_hal_def.h │ │ │ │ │ ├── stm32f3xx_hal_dma.h │ │ │ │ │ ├── stm32f3xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f3xx_hal_exti.h │ │ │ │ │ ├── stm32f3xx_hal_flash.h │ │ │ │ │ ├── stm32f3xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f3xx_hal_gpio.h │ │ │ │ │ ├── stm32f3xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f3xx_hal_hrtim.h │ │ │ │ │ ├── stm32f3xx_hal_i2c.h │ │ │ │ │ ├── stm32f3xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32f3xx_hal_i2s.h │ │ │ │ │ ├── stm32f3xx_hal_i2s_ex.h │ │ │ │ │ ├── stm32f3xx_hal_irda.h │ │ │ │ │ ├── stm32f3xx_hal_irda_ex.h │ │ │ │ │ ├── stm32f3xx_hal_iwdg.h │ │ │ │ │ ├── stm32f3xx_hal_nand.h │ │ │ │ │ ├── stm32f3xx_hal_nor.h │ │ │ │ │ ├── stm32f3xx_hal_opamp.h │ │ │ │ │ ├── stm32f3xx_hal_opamp_ex.h │ │ │ │ │ ├── stm32f3xx_hal_pccard.h │ │ │ │ │ ├── stm32f3xx_hal_pcd.h │ │ │ │ │ ├── stm32f3xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f3xx_hal_pwr.h │ │ │ │ │ ├── stm32f3xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32f3xx_hal_rcc.h │ │ │ │ │ ├── stm32f3xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f3xx_hal_rtc.h │ │ │ │ │ ├── stm32f3xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f3xx_hal_sdadc.h │ │ │ │ │ ├── stm32f3xx_hal_smartcard.h │ │ │ │ │ ├── stm32f3xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32f3xx_hal_smbus.h │ │ │ │ │ ├── stm32f3xx_hal_spi.h │ │ │ │ │ ├── stm32f3xx_hal_spi_ex.h │ │ │ │ │ ├── stm32f3xx_hal_sram.h │ │ │ │ │ ├── stm32f3xx_hal_tim.h │ │ │ │ │ ├── stm32f3xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f3xx_hal_tsc.h │ │ │ │ │ ├── stm32f3xx_hal_uart.h │ │ │ │ │ ├── stm32f3xx_hal_uart_ex.h │ │ │ │ │ ├── stm32f3xx_hal_usart.h │ │ │ │ │ ├── stm32f3xx_hal_usart_ex.h │ │ │ │ │ ├── stm32f3xx_hal_wwdg.h │ │ │ │ │ ├── stm32f3xx_ll_adc.h │ │ │ │ │ ├── stm32f3xx_ll_bus.h │ │ │ │ │ ├── stm32f3xx_ll_comp.h │ │ │ │ │ ├── stm32f3xx_ll_cortex.h │ │ │ │ │ ├── stm32f3xx_ll_crc.h │ │ │ │ │ ├── stm32f3xx_ll_dac.h │ │ │ │ │ ├── stm32f3xx_ll_dma.h │ │ │ │ │ ├── stm32f3xx_ll_exti.h │ │ │ │ │ ├── stm32f3xx_ll_fmc.h │ │ │ │ │ ├── stm32f3xx_ll_gpio.h │ │ │ │ │ ├── stm32f3xx_ll_hrtim.h │ │ │ │ │ ├── stm32f3xx_ll_i2c.h │ │ │ │ │ ├── stm32f3xx_ll_iwdg.h │ │ │ │ │ ├── stm32f3xx_ll_opamp.h │ │ │ │ │ ├── stm32f3xx_ll_pwr.h │ │ │ │ │ ├── stm32f3xx_ll_rcc.h │ │ │ │ │ ├── stm32f3xx_ll_rtc.h │ │ │ │ │ ├── stm32f3xx_ll_spi.h │ │ │ │ │ ├── stm32f3xx_ll_system.h │ │ │ │ │ ├── stm32f3xx_ll_tim.h │ │ │ │ │ ├── stm32f3xx_ll_usart.h │ │ │ │ │ ├── stm32f3xx_ll_usb.h │ │ │ │ │ ├── stm32f3xx_ll_utils.h │ │ │ │ │ └── stm32f3xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f3-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f3xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f3xx_hal.c │ │ │ │ ├── stm32f3xx_hal_adc.c │ │ │ │ ├── stm32f3xx_hal_adc_ex.c │ │ │ │ ├── stm32f3xx_hal_can.c │ │ │ │ ├── stm32f3xx_hal_cec.c │ │ │ │ ├── stm32f3xx_hal_comp.c │ │ │ │ ├── stm32f3xx_hal_cortex.c │ │ │ │ ├── stm32f3xx_hal_crc.c │ │ │ │ ├── stm32f3xx_hal_crc_ex.c │ │ │ │ ├── stm32f3xx_hal_dac.c │ │ │ │ ├── stm32f3xx_hal_dac_ex.c │ │ │ │ ├── stm32f3xx_hal_dma.c │ │ │ │ ├── stm32f3xx_hal_exti.c │ │ │ │ ├── stm32f3xx_hal_flash.c │ │ │ │ ├── stm32f3xx_hal_flash_ex.c │ │ │ │ ├── stm32f3xx_hal_gpio.c │ │ │ │ ├── stm32f3xx_hal_hrtim.c │ │ │ │ ├── stm32f3xx_hal_i2c.c │ │ │ │ ├── stm32f3xx_hal_i2c_ex.c │ │ │ │ ├── stm32f3xx_hal_i2s.c │ │ │ │ ├── stm32f3xx_hal_i2s_ex.c │ │ │ │ ├── stm32f3xx_hal_irda.c │ │ │ │ ├── stm32f3xx_hal_iwdg.c │ │ │ │ ├── stm32f3xx_hal_msp_template.c │ │ │ │ ├── stm32f3xx_hal_nand.c │ │ │ │ ├── stm32f3xx_hal_nor.c │ │ │ │ ├── stm32f3xx_hal_opamp.c │ │ │ │ ├── stm32f3xx_hal_opamp_ex.c │ │ │ │ ├── stm32f3xx_hal_pccard.c │ │ │ │ ├── stm32f3xx_hal_pcd.c │ │ │ │ ├── stm32f3xx_hal_pcd_ex.c │ │ │ │ ├── stm32f3xx_hal_pwr.c │ │ │ │ ├── stm32f3xx_hal_pwr_ex.c │ │ │ │ ├── stm32f3xx_hal_rcc.c │ │ │ │ ├── stm32f3xx_hal_rcc_ex.c │ │ │ │ ├── stm32f3xx_hal_rtc.c │ │ │ │ ├── stm32f3xx_hal_rtc_ex.c │ │ │ │ ├── stm32f3xx_hal_sdadc.c │ │ │ │ ├── stm32f3xx_hal_smartcard.c │ │ │ │ ├── stm32f3xx_hal_smartcard_ex.c │ │ │ │ ├── stm32f3xx_hal_smbus.c │ │ │ │ ├── stm32f3xx_hal_spi.c │ │ │ │ ├── stm32f3xx_hal_spi_ex.c │ │ │ │ ├── stm32f3xx_hal_sram.c │ │ │ │ ├── stm32f3xx_hal_tim.c │ │ │ │ ├── stm32f3xx_hal_tim_ex.c │ │ │ │ ├── stm32f3xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f3xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f3xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f3xx_hal_tsc.c │ │ │ │ ├── stm32f3xx_hal_uart.c │ │ │ │ ├── stm32f3xx_hal_uart_ex.c │ │ │ │ ├── stm32f3xx_hal_usart.c │ │ │ │ ├── stm32f3xx_hal_usart_ex.c │ │ │ │ ├── stm32f3xx_hal_wwdg.c │ │ │ │ ├── stm32f3xx_ll_adc.c │ │ │ │ ├── stm32f3xx_ll_comp.c │ │ │ │ ├── stm32f3xx_ll_crc.c │ │ │ │ ├── stm32f3xx_ll_dac.c │ │ │ │ ├── stm32f3xx_ll_dma.c │ │ │ │ ├── stm32f3xx_ll_exti.c │ │ │ │ ├── stm32f3xx_ll_fmc.c │ │ │ │ ├── stm32f3xx_ll_gpio.c │ │ │ │ ├── stm32f3xx_ll_hrtim.c │ │ │ │ ├── stm32f3xx_ll_i2c.c │ │ │ │ ├── stm32f3xx_ll_opamp.c │ │ │ │ ├── stm32f3xx_ll_pwr.c │ │ │ │ ├── stm32f3xx_ll_rcc.c │ │ │ │ ├── stm32f3xx_ll_rtc.c │ │ │ │ ├── stm32f3xx_ll_spi.c │ │ │ │ ├── stm32f3xx_ll_tim.c │ │ │ │ ├── stm32f3xx_ll_usart.c │ │ │ │ ├── stm32f3xx_ll_usb.c │ │ │ │ └── stm32f3xx_ll_utils.c │ │ ├── stm32f3 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── cmsis │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── cmsis_device.h │ │ │ │ │ ├── stm32f301x8.h │ │ │ │ │ ├── stm32f302x8.h │ │ │ │ │ ├── stm32f302xc.h │ │ │ │ │ ├── stm32f302xe.h │ │ │ │ │ ├── stm32f303x8.h │ │ │ │ │ ├── stm32f303xc.h │ │ │ │ │ ├── stm32f303xe.h │ │ │ │ │ ├── stm32f318xx.h │ │ │ │ │ ├── stm32f328xx.h │ │ │ │ │ ├── stm32f334x8.h │ │ │ │ │ ├── stm32f358xx.h │ │ │ │ │ ├── stm32f373xc.h │ │ │ │ │ ├── stm32f378xx.h │ │ │ │ │ ├── stm32f398xx.h │ │ │ │ │ ├── stm32f3xx.h │ │ │ │ │ └── system_stm32f3xx.h │ │ │ └── src │ │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── system_stm32f3xx.c │ │ │ │ ├── vectors_stm32f301x8.c │ │ │ │ ├── vectors_stm32f302x8.c │ │ │ │ ├── vectors_stm32f302xc.c │ │ │ │ ├── vectors_stm32f302xe.c │ │ │ │ ├── vectors_stm32f303x8.c │ │ │ │ ├── vectors_stm32f303xc.c │ │ │ │ ├── vectors_stm32f303xe.c │ │ │ │ ├── vectors_stm32f318xx.c │ │ │ │ ├── vectors_stm32f328xx.c │ │ │ │ ├── vectors_stm32f334x8.c │ │ │ │ ├── vectors_stm32f358xx.c │ │ │ │ ├── vectors_stm32f373xc.c │ │ │ │ ├── vectors_stm32f378xx.c │ │ │ │ └── vectors_stm32f398xx.c │ │ ├── stm32f4-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f4-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f4xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f4xx_hal.h │ │ │ │ │ ├── stm32f4xx_hal_adc.h │ │ │ │ │ ├── stm32f4xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f4xx_hal_can.h │ │ │ │ │ ├── stm32f4xx_hal_cec.h │ │ │ │ │ ├── stm32f4xx_hal_conf_template.h │ │ │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ │ │ ├── stm32f4xx_hal_crc.h │ │ │ │ │ ├── stm32f4xx_hal_cryp.h │ │ │ │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ │ │ │ ├── stm32f4xx_hal_dac.h │ │ │ │ │ ├── stm32f4xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f4xx_hal_dcmi.h │ │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ │ │ │ ├── stm32f4xx_hal_def.h │ │ │ │ │ ├── stm32f4xx_hal_dfsdm.h │ │ │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ │ │ ├── stm32f4xx_hal_dma2d.h │ │ │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f4xx_hal_dsi.h │ │ │ │ │ ├── stm32f4xx_hal_eth.h │ │ │ │ │ ├── stm32f4xx_hal_exti.h │ │ │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.h │ │ │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f4xx_hal_hash.h │ │ │ │ │ ├── stm32f4xx_hal_hash_ex.h │ │ │ │ │ ├── stm32f4xx_hal_hcd.h │ │ │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ │ │ ├── stm32f4xx_hal_irda.h │ │ │ │ │ ├── stm32f4xx_hal_iwdg.h │ │ │ │ │ ├── stm32f4xx_hal_lptim.h │ │ │ │ │ ├── stm32f4xx_hal_ltdc.h │ │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ │ │ │ ├── stm32f4xx_hal_mmc.h │ │ │ │ │ ├── stm32f4xx_hal_nand.h │ │ │ │ │ ├── stm32f4xx_hal_nor.h │ │ │ │ │ ├── stm32f4xx_hal_pccard.h │ │ │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32f4xx_hal_qspi.h │ │ │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f4xx_hal_rng.h │ │ │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f4xx_hal_sai.h │ │ │ │ │ ├── stm32f4xx_hal_sai_ex.h │ │ │ │ │ ├── stm32f4xx_hal_sd.h │ │ │ │ │ ├── stm32f4xx_hal_sdram.h │ │ │ │ │ ├── stm32f4xx_hal_smartcard.h │ │ │ │ │ ├── stm32f4xx_hal_smbus.h │ │ │ │ │ ├── stm32f4xx_hal_spdifrx.h │ │ │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ │ │ ├── stm32f4xx_hal_sram.h │ │ │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ │ │ ├── stm32f4xx_hal_usart.h │ │ │ │ │ ├── stm32f4xx_hal_wwdg.h │ │ │ │ │ ├── stm32f4xx_ll_adc.h │ │ │ │ │ ├── stm32f4xx_ll_bus.h │ │ │ │ │ ├── stm32f4xx_ll_cortex.h │ │ │ │ │ ├── stm32f4xx_ll_crc.h │ │ │ │ │ ├── stm32f4xx_ll_dac.h │ │ │ │ │ ├── stm32f4xx_ll_dma.h │ │ │ │ │ ├── stm32f4xx_ll_dma2d.h │ │ │ │ │ ├── stm32f4xx_ll_exti.h │ │ │ │ │ ├── stm32f4xx_ll_fmc.h │ │ │ │ │ ├── stm32f4xx_ll_fmpi2c.h │ │ │ │ │ ├── stm32f4xx_ll_fsmc.h │ │ │ │ │ ├── stm32f4xx_ll_gpio.h │ │ │ │ │ ├── stm32f4xx_ll_i2c.h │ │ │ │ │ ├── stm32f4xx_ll_iwdg.h │ │ │ │ │ ├── stm32f4xx_ll_lptim.h │ │ │ │ │ ├── stm32f4xx_ll_pwr.h │ │ │ │ │ ├── stm32f4xx_ll_rcc.h │ │ │ │ │ ├── stm32f4xx_ll_rng.h │ │ │ │ │ ├── stm32f4xx_ll_rtc.h │ │ │ │ │ ├── stm32f4xx_ll_sdmmc.h │ │ │ │ │ ├── stm32f4xx_ll_spi.h │ │ │ │ │ ├── stm32f4xx_ll_system.h │ │ │ │ │ ├── stm32f4xx_ll_tim.h │ │ │ │ │ ├── stm32f4xx_ll_usart.h │ │ │ │ │ ├── stm32f4xx_ll_usb.h │ │ │ │ │ ├── stm32f4xx_ll_utils.h │ │ │ │ │ └── stm32f4xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f4-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f4xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f4xx_hal.c │ │ │ │ ├── stm32f4xx_hal_adc.c │ │ │ │ ├── stm32f4xx_hal_adc_ex.c │ │ │ │ ├── stm32f4xx_hal_can.c │ │ │ │ ├── stm32f4xx_hal_cec.c │ │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ │ ├── stm32f4xx_hal_crc.c │ │ │ │ ├── stm32f4xx_hal_cryp.c │ │ │ │ ├── stm32f4xx_hal_cryp_ex.c │ │ │ │ ├── stm32f4xx_hal_dac.c │ │ │ │ ├── stm32f4xx_hal_dac_ex.c │ │ │ │ ├── stm32f4xx_hal_dcmi.c │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f4xx_hal_dfsdm.c │ │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ │ ├── stm32f4xx_hal_dma2d.c │ │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ │ ├── stm32f4xx_hal_dsi.c │ │ │ │ ├── stm32f4xx_hal_eth.c │ │ │ │ ├── stm32f4xx_hal_exti.c │ │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.c │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.c │ │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ │ ├── stm32f4xx_hal_hash.c │ │ │ │ ├── stm32f4xx_hal_hash_ex.c │ │ │ │ ├── stm32f4xx_hal_hcd.c │ │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ │ ├── stm32f4xx_hal_irda.c │ │ │ │ ├── stm32f4xx_hal_iwdg.c │ │ │ │ ├── stm32f4xx_hal_lptim.c │ │ │ │ ├── stm32f4xx_hal_ltdc.c │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.c │ │ │ │ ├── stm32f4xx_hal_mmc.c │ │ │ │ ├── stm32f4xx_hal_msp_template.c │ │ │ │ ├── stm32f4xx_hal_nand.c │ │ │ │ ├── stm32f4xx_hal_nor.c │ │ │ │ ├── stm32f4xx_hal_pccard.c │ │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ │ ├── stm32f4xx_hal_qspi.c │ │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ │ ├── stm32f4xx_hal_rng.c │ │ │ │ ├── stm32f4xx_hal_rtc.c │ │ │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ │ │ ├── stm32f4xx_hal_sai.c │ │ │ │ ├── stm32f4xx_hal_sai_ex.c │ │ │ │ ├── stm32f4xx_hal_sd.c │ │ │ │ ├── stm32f4xx_hal_sdram.c │ │ │ │ ├── stm32f4xx_hal_smartcard.c │ │ │ │ ├── stm32f4xx_hal_smbus.c │ │ │ │ ├── stm32f4xx_hal_spdifrx.c │ │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ │ ├── stm32f4xx_hal_sram.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ │ ├── stm32f4xx_hal_usart.c │ │ │ │ ├── stm32f4xx_hal_wwdg.c │ │ │ │ ├── stm32f4xx_ll_adc.c │ │ │ │ ├── stm32f4xx_ll_crc.c │ │ │ │ ├── stm32f4xx_ll_dac.c │ │ │ │ ├── stm32f4xx_ll_dma.c │ │ │ │ ├── stm32f4xx_ll_dma2d.c │ │ │ │ ├── stm32f4xx_ll_exti.c │ │ │ │ ├── stm32f4xx_ll_fmc.c │ │ │ │ ├── stm32f4xx_ll_fmpi2c.c │ │ │ │ ├── stm32f4xx_ll_fsmc.c │ │ │ │ ├── stm32f4xx_ll_gpio.c │ │ │ │ ├── stm32f4xx_ll_i2c.c │ │ │ │ ├── stm32f4xx_ll_lptim.c │ │ │ │ ├── stm32f4xx_ll_pwr.c │ │ │ │ ├── stm32f4xx_ll_rcc.c │ │ │ │ ├── stm32f4xx_ll_rng.c │ │ │ │ ├── stm32f4xx_ll_rtc.c │ │ │ │ ├── stm32f4xx_ll_sdmmc.c │ │ │ │ ├── stm32f4xx_ll_spi.c │ │ │ │ ├── stm32f4xx_ll_tim.c │ │ │ │ ├── stm32f4xx_ll_usart.c │ │ │ │ ├── stm32f4xx_ll_usb.c │ │ │ │ └── stm32f4xx_ll_utils.c │ │ ├── stm32f4 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── cmsis │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── cmsis_device.h │ │ │ │ │ ├── stm32f401xc.h │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ ├── stm32f405xx.h │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f410cx.h │ │ │ │ │ ├── stm32f410rx.h │ │ │ │ │ ├── stm32f410tx.h │ │ │ │ │ ├── stm32f411xe.h │ │ │ │ │ ├── stm32f412cx.h │ │ │ │ │ ├── stm32f412rx.h │ │ │ │ │ ├── stm32f412vx.h │ │ │ │ │ ├── stm32f412zx.h │ │ │ │ │ ├── stm32f413xx.h │ │ │ │ │ ├── stm32f415xx.h │ │ │ │ │ ├── stm32f417xx.h │ │ │ │ │ ├── stm32f423xx.h │ │ │ │ │ ├── stm32f427xx.h │ │ │ │ │ ├── stm32f429xx.h │ │ │ │ │ ├── stm32f437xx.h │ │ │ │ │ ├── stm32f439xx.h │ │ │ │ │ ├── stm32f446xx.h │ │ │ │ │ ├── stm32f469xx.h │ │ │ │ │ ├── stm32f479xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ └── src │ │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── system_stm32f4xx.c │ │ │ │ ├── vectors_stm32f401xc.c │ │ │ │ ├── vectors_stm32f401xe.c │ │ │ │ ├── vectors_stm32f405xx.c │ │ │ │ ├── vectors_stm32f407xx.c │ │ │ │ ├── vectors_stm32f410cx.c │ │ │ │ ├── vectors_stm32f410rx.c │ │ │ │ ├── vectors_stm32f410tx.c │ │ │ │ ├── vectors_stm32f411xe.c │ │ │ │ ├── vectors_stm32f412cx.c │ │ │ │ ├── vectors_stm32f412rx.c │ │ │ │ ├── vectors_stm32f412vx.c │ │ │ │ ├── vectors_stm32f412zx.c │ │ │ │ ├── vectors_stm32f413xx.c │ │ │ │ ├── vectors_stm32f415xx.c │ │ │ │ ├── vectors_stm32f417xx.c │ │ │ │ ├── vectors_stm32f423xx.c │ │ │ │ ├── vectors_stm32f427xx.c │ │ │ │ ├── vectors_stm32f429xx.c │ │ │ │ ├── vectors_stm32f437xx.c │ │ │ │ ├── vectors_stm32f439xx.c │ │ │ │ ├── vectors_stm32f446xx.c │ │ │ │ ├── vectors_stm32f469xx.c │ │ │ │ └── vectors_stm32f479xx.c │ │ ├── stm32f7-hal │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ │ └── stm32f7-hal │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f7xx_hal_can_legacy.h │ │ │ │ │ ├── README-DEVICE.md │ │ │ │ │ ├── stm32_assert_template.h │ │ │ │ │ ├── stm32f7xx_hal.h │ │ │ │ │ ├── stm32f7xx_hal_adc.h │ │ │ │ │ ├── stm32f7xx_hal_adc_ex.h │ │ │ │ │ ├── stm32f7xx_hal_can.h │ │ │ │ │ ├── stm32f7xx_hal_cec.h │ │ │ │ │ ├── stm32f7xx_hal_conf_template.h │ │ │ │ │ ├── stm32f7xx_hal_cortex.h │ │ │ │ │ ├── stm32f7xx_hal_crc.h │ │ │ │ │ ├── stm32f7xx_hal_crc_ex.h │ │ │ │ │ ├── stm32f7xx_hal_cryp.h │ │ │ │ │ ├── stm32f7xx_hal_cryp_ex.h │ │ │ │ │ ├── stm32f7xx_hal_dac.h │ │ │ │ │ ├── stm32f7xx_hal_dac_ex.h │ │ │ │ │ ├── stm32f7xx_hal_dcmi.h │ │ │ │ │ ├── stm32f7xx_hal_dcmi_ex.h │ │ │ │ │ ├── stm32f7xx_hal_def.h │ │ │ │ │ ├── stm32f7xx_hal_dfsdm.h │ │ │ │ │ ├── stm32f7xx_hal_dma.h │ │ │ │ │ ├── stm32f7xx_hal_dma2d.h │ │ │ │ │ ├── stm32f7xx_hal_dma_ex.h │ │ │ │ │ ├── stm32f7xx_hal_dsi.h │ │ │ │ │ ├── stm32f7xx_hal_eth.h │ │ │ │ │ ├── stm32f7xx_hal_exti.h │ │ │ │ │ ├── stm32f7xx_hal_flash.h │ │ │ │ │ ├── stm32f7xx_hal_flash_ex.h │ │ │ │ │ ├── stm32f7xx_hal_gpio.h │ │ │ │ │ ├── stm32f7xx_hal_gpio_ex.h │ │ │ │ │ ├── stm32f7xx_hal_hash.h │ │ │ │ │ ├── stm32f7xx_hal_hash_ex.h │ │ │ │ │ ├── stm32f7xx_hal_hcd.h │ │ │ │ │ ├── stm32f7xx_hal_i2c.h │ │ │ │ │ ├── stm32f7xx_hal_i2c_ex.h │ │ │ │ │ ├── stm32f7xx_hal_i2s.h │ │ │ │ │ ├── stm32f7xx_hal_irda.h │ │ │ │ │ ├── stm32f7xx_hal_irda_ex.h │ │ │ │ │ ├── stm32f7xx_hal_iwdg.h │ │ │ │ │ ├── stm32f7xx_hal_jpeg.h │ │ │ │ │ ├── stm32f7xx_hal_lptim.h │ │ │ │ │ ├── stm32f7xx_hal_ltdc.h │ │ │ │ │ ├── stm32f7xx_hal_ltdc_ex.h │ │ │ │ │ ├── stm32f7xx_hal_mdios.h │ │ │ │ │ ├── stm32f7xx_hal_mmc.h │ │ │ │ │ ├── stm32f7xx_hal_nand.h │ │ │ │ │ ├── stm32f7xx_hal_nor.h │ │ │ │ │ ├── stm32f7xx_hal_pcd.h │ │ │ │ │ ├── stm32f7xx_hal_pcd_ex.h │ │ │ │ │ ├── stm32f7xx_hal_pwr.h │ │ │ │ │ ├── stm32f7xx_hal_pwr_ex.h │ │ │ │ │ ├── stm32f7xx_hal_qspi.h │ │ │ │ │ ├── stm32f7xx_hal_rcc.h │ │ │ │ │ ├── stm32f7xx_hal_rcc_ex.h │ │ │ │ │ ├── stm32f7xx_hal_rng.h │ │ │ │ │ ├── stm32f7xx_hal_rtc.h │ │ │ │ │ ├── stm32f7xx_hal_rtc_ex.h │ │ │ │ │ ├── stm32f7xx_hal_sai.h │ │ │ │ │ ├── stm32f7xx_hal_sai_ex.h │ │ │ │ │ ├── stm32f7xx_hal_sd.h │ │ │ │ │ ├── stm32f7xx_hal_sdram.h │ │ │ │ │ ├── stm32f7xx_hal_smartcard.h │ │ │ │ │ ├── stm32f7xx_hal_smartcard_ex.h │ │ │ │ │ ├── stm32f7xx_hal_smbus.h │ │ │ │ │ ├── stm32f7xx_hal_spdifrx.h │ │ │ │ │ ├── stm32f7xx_hal_spi.h │ │ │ │ │ ├── stm32f7xx_hal_spi_ex.h │ │ │ │ │ ├── stm32f7xx_hal_sram.h │ │ │ │ │ ├── stm32f7xx_hal_tim.h │ │ │ │ │ ├── stm32f7xx_hal_tim_ex.h │ │ │ │ │ ├── stm32f7xx_hal_uart.h │ │ │ │ │ ├── stm32f7xx_hal_uart_ex.h │ │ │ │ │ ├── stm32f7xx_hal_usart.h │ │ │ │ │ ├── stm32f7xx_hal_usart_ex.h │ │ │ │ │ ├── stm32f7xx_hal_wwdg.h │ │ │ │ │ ├── stm32f7xx_ll_adc.h │ │ │ │ │ ├── stm32f7xx_ll_bus.h │ │ │ │ │ ├── stm32f7xx_ll_cortex.h │ │ │ │ │ ├── stm32f7xx_ll_crc.h │ │ │ │ │ ├── stm32f7xx_ll_dac.h │ │ │ │ │ ├── stm32f7xx_ll_dma.h │ │ │ │ │ ├── stm32f7xx_ll_dma2d.h │ │ │ │ │ ├── stm32f7xx_ll_exti.h │ │ │ │ │ ├── stm32f7xx_ll_fmc.h │ │ │ │ │ ├── stm32f7xx_ll_gpio.h │ │ │ │ │ ├── stm32f7xx_ll_i2c.h │ │ │ │ │ ├── stm32f7xx_ll_iwdg.h │ │ │ │ │ ├── stm32f7xx_ll_lptim.h │ │ │ │ │ ├── stm32f7xx_ll_pwr.h │ │ │ │ │ ├── stm32f7xx_ll_rcc.h │ │ │ │ │ ├── stm32f7xx_ll_rng.h │ │ │ │ │ ├── stm32f7xx_ll_rtc.h │ │ │ │ │ ├── stm32f7xx_ll_sdmmc.h │ │ │ │ │ ├── stm32f7xx_ll_spi.h │ │ │ │ │ ├── stm32f7xx_ll_system.h │ │ │ │ │ ├── stm32f7xx_ll_tim.h │ │ │ │ │ ├── stm32f7xx_ll_usart.h │ │ │ │ │ ├── stm32f7xx_ll_usb.h │ │ │ │ │ ├── stm32f7xx_ll_utils.h │ │ │ │ │ └── stm32f7xx_ll_wwdg.h │ │ │ └── src │ │ │ │ └── stm32f7-hal │ │ │ │ ├── Legacy │ │ │ │ └── stm32f7xx_hal_can.c │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── stm32f7xx_hal.c │ │ │ │ ├── stm32f7xx_hal_adc.c │ │ │ │ ├── stm32f7xx_hal_adc_ex.c │ │ │ │ ├── stm32f7xx_hal_can.c │ │ │ │ ├── stm32f7xx_hal_cec.c │ │ │ │ ├── stm32f7xx_hal_cortex.c │ │ │ │ ├── stm32f7xx_hal_crc.c │ │ │ │ ├── stm32f7xx_hal_crc_ex.c │ │ │ │ ├── stm32f7xx_hal_cryp.c │ │ │ │ ├── stm32f7xx_hal_cryp_ex.c │ │ │ │ ├── stm32f7xx_hal_dac.c │ │ │ │ ├── stm32f7xx_hal_dac_ex.c │ │ │ │ ├── stm32f7xx_hal_dcmi.c │ │ │ │ ├── stm32f7xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f7xx_hal_dfsdm.c │ │ │ │ ├── stm32f7xx_hal_dma.c │ │ │ │ ├── stm32f7xx_hal_dma2d.c │ │ │ │ ├── stm32f7xx_hal_dma_ex.c │ │ │ │ ├── stm32f7xx_hal_dsi.c │ │ │ │ ├── stm32f7xx_hal_eth.c │ │ │ │ ├── stm32f7xx_hal_exti.c │ │ │ │ ├── stm32f7xx_hal_flash.c │ │ │ │ ├── stm32f7xx_hal_flash_ex.c │ │ │ │ ├── stm32f7xx_hal_gpio.c │ │ │ │ ├── stm32f7xx_hal_hash.c │ │ │ │ ├── stm32f7xx_hal_hash_ex.c │ │ │ │ ├── stm32f7xx_hal_hcd.c │ │ │ │ ├── stm32f7xx_hal_i2c.c │ │ │ │ ├── stm32f7xx_hal_i2c_ex.c │ │ │ │ ├── stm32f7xx_hal_i2s.c │ │ │ │ ├── stm32f7xx_hal_irda.c │ │ │ │ ├── stm32f7xx_hal_iwdg.c │ │ │ │ ├── stm32f7xx_hal_jpeg.c │ │ │ │ ├── stm32f7xx_hal_lptim.c │ │ │ │ ├── stm32f7xx_hal_ltdc.c │ │ │ │ ├── stm32f7xx_hal_ltdc_ex.c │ │ │ │ ├── stm32f7xx_hal_mdios.c │ │ │ │ ├── stm32f7xx_hal_mmc.c │ │ │ │ ├── stm32f7xx_hal_msp_template.c │ │ │ │ ├── stm32f7xx_hal_nand.c │ │ │ │ ├── stm32f7xx_hal_nor.c │ │ │ │ ├── stm32f7xx_hal_pcd.c │ │ │ │ ├── stm32f7xx_hal_pcd_ex.c │ │ │ │ ├── stm32f7xx_hal_pwr.c │ │ │ │ ├── stm32f7xx_hal_pwr_ex.c │ │ │ │ ├── stm32f7xx_hal_qspi.c │ │ │ │ ├── stm32f7xx_hal_rcc.c │ │ │ │ ├── stm32f7xx_hal_rcc_ex.c │ │ │ │ ├── stm32f7xx_hal_rng.c │ │ │ │ ├── stm32f7xx_hal_rtc.c │ │ │ │ ├── stm32f7xx_hal_rtc_ex.c │ │ │ │ ├── stm32f7xx_hal_sai.c │ │ │ │ ├── stm32f7xx_hal_sai_ex.c │ │ │ │ ├── stm32f7xx_hal_sd.c │ │ │ │ ├── stm32f7xx_hal_sdram.c │ │ │ │ ├── stm32f7xx_hal_smartcard.c │ │ │ │ ├── stm32f7xx_hal_smartcard_ex.c │ │ │ │ ├── stm32f7xx_hal_smbus.c │ │ │ │ ├── stm32f7xx_hal_spdifrx.c │ │ │ │ ├── stm32f7xx_hal_spi.c │ │ │ │ ├── stm32f7xx_hal_spi_ex.c │ │ │ │ ├── stm32f7xx_hal_sram.c │ │ │ │ ├── stm32f7xx_hal_tim.c │ │ │ │ ├── stm32f7xx_hal_tim_ex.c │ │ │ │ ├── stm32f7xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f7xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f7xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f7xx_hal_uart.c │ │ │ │ ├── stm32f7xx_hal_uart_ex.c │ │ │ │ ├── stm32f7xx_hal_usart.c │ │ │ │ ├── stm32f7xx_hal_wwdg.c │ │ │ │ ├── stm32f7xx_ll_adc.c │ │ │ │ ├── stm32f7xx_ll_crc.c │ │ │ │ ├── stm32f7xx_ll_dac.c │ │ │ │ ├── stm32f7xx_ll_dma.c │ │ │ │ ├── stm32f7xx_ll_dma2d.c │ │ │ │ ├── stm32f7xx_ll_exti.c │ │ │ │ ├── stm32f7xx_ll_fmc.c │ │ │ │ ├── stm32f7xx_ll_gpio.c │ │ │ │ ├── stm32f7xx_ll_i2c.c │ │ │ │ ├── stm32f7xx_ll_lptim.c │ │ │ │ ├── stm32f7xx_ll_pwr.c │ │ │ │ ├── stm32f7xx_ll_rcc.c │ │ │ │ ├── stm32f7xx_ll_rng.c │ │ │ │ ├── stm32f7xx_ll_rtc.c │ │ │ │ ├── stm32f7xx_ll_sdmmc.c │ │ │ │ ├── stm32f7xx_ll_spi.c │ │ │ │ ├── stm32f7xx_ll_tim.c │ │ │ │ ├── stm32f7xx_ll_usart.c │ │ │ │ ├── stm32f7xx_ll_usb.c │ │ │ │ └── stm32f7xx_ll_utils.c │ │ └── stm32f7 │ │ │ ├── Release_Notes.html │ │ │ ├── include │ │ │ └── cmsis │ │ │ │ ├── README-DEVICE.md │ │ │ │ ├── cmsis_device.h │ │ │ │ ├── stm32f722xx.h │ │ │ │ ├── stm32f723xx.h │ │ │ │ ├── stm32f730xx.h │ │ │ │ ├── stm32f732xx.h │ │ │ │ ├── stm32f733xx.h │ │ │ │ ├── stm32f745xx.h │ │ │ │ ├── stm32f746xx.h │ │ │ │ ├── stm32f750xx.h │ │ │ │ ├── stm32f756xx.h │ │ │ │ ├── stm32f765xx.h │ │ │ │ ├── stm32f767xx.h │ │ │ │ ├── stm32f769xx.h │ │ │ │ ├── stm32f777xx.h │ │ │ │ ├── stm32f779xx.h │ │ │ │ ├── stm32f7xx.h │ │ │ │ └── system_stm32f7xx.h │ │ │ └── src │ │ │ └── cmsis │ │ │ ├── README-DEVICE.md │ │ │ ├── system_stm32f7xx.c │ │ │ ├── vectors_stm32f722xx.c │ │ │ ├── vectors_stm32f723xx.c │ │ │ ├── vectors_stm32f730xx.c │ │ │ ├── vectors_stm32f732xx.c │ │ │ ├── vectors_stm32f733xx.c │ │ │ ├── vectors_stm32f745xx.c │ │ │ ├── vectors_stm32f746xx.c │ │ │ ├── vectors_stm32f750xx.c │ │ │ ├── vectors_stm32f756xx.c │ │ │ ├── vectors_stm32f765xx.c │ │ │ ├── vectors_stm32f767xx.c │ │ │ ├── vectors_stm32f769xx.c │ │ │ ├── vectors_stm32f777xx.c │ │ │ └── vectors_stm32f779xx.c │ │ ├── stm32f0xx_exe_c_project │ │ ├── ldscripts │ │ │ └── mem.ld │ │ ├── src │ │ │ ├── initialize-hardware.c │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs.h │ │ │ ├── led-50-c.h │ │ │ ├── led-50-cpp.h │ │ │ ├── led.c │ │ │ └── led.cpp │ │ ├── template.properties │ │ └── template.xml │ │ ├── stm32f1xx_exe_c_project │ │ ├── ldscripts │ │ │ └── mem.ld │ │ ├── src │ │ │ ├── initialize-hardware.c │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs.h │ │ │ ├── led-50-c.h │ │ │ ├── led-50-cpp.h │ │ │ ├── led.c │ │ │ └── led.cpp │ │ ├── template.properties │ │ └── template.xml │ │ ├── stm32f2xx_exe_c_project │ │ ├── ldscripts │ │ │ └── mem.ld │ │ ├── src │ │ │ ├── initialize-hardware.c │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs.h │ │ │ ├── led-50-c.h │ │ │ ├── led-50-cpp.h │ │ │ ├── led.c │ │ │ └── led.cpp │ │ ├── template.properties │ │ └── template.xml │ │ ├── stm32f3xx_exe_c_project │ │ ├── ldscripts │ │ │ └── mem.ld │ │ ├── src │ │ │ ├── initialize-hardware.c │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs.h │ │ │ ├── led-50-c.h │ │ │ ├── led-50-cpp.h │ │ │ ├── led.c │ │ │ └── led.cpp │ │ ├── template.properties │ │ └── template.xml │ │ ├── stm32f4xx_exe_c_project │ │ ├── UPDATE.md │ │ ├── ldscripts │ │ │ ├── mem128.ld │ │ │ ├── mem192.ld │ │ │ ├── mem256.ld │ │ │ ├── mem32.ld │ │ │ └── mem64.ld │ │ ├── src │ │ │ ├── initialize-hardware.c │ │ │ ├── led-20-headers.h │ │ │ ├── led-40-defs.h │ │ │ ├── led-50-c.h │ │ │ ├── led-50-cpp.h │ │ │ ├── led.c │ │ │ ├── led.cpp │ │ │ ├── led2-cpp.h │ │ │ ├── led2.cpp │ │ │ └── main │ │ │ │ ├── main-145-leds-blinky.c │ │ │ │ ├── main-145-leds-blinky.cpp │ │ │ │ ├── main-200-none-loop-blinky.c │ │ │ │ ├── main-200-none-loop-blinky.cpp │ │ │ │ ├── main-200-retarget-loop-blinky.c │ │ │ │ ├── main-200-retarget-loop-blinky.cpp │ │ │ │ ├── main-200-semihosting-loop-blinky.c │ │ │ │ └── main-200-semihosting-loop-blinky.cpp │ │ ├── template.properties │ │ └── template.xml │ │ └── stm32f7xx_exe_c_project │ │ ├── UPDATE.md │ │ ├── ldscripts │ │ ├── mem256.ld │ │ ├── mem320.ld │ │ └── mem512.ld │ │ ├── src │ │ ├── initialize-hardware.c │ │ ├── led-20-headers.h │ │ ├── led-40-defs.h │ │ ├── led-50-c.h │ │ ├── led-50-cpp.h │ │ ├── led.c │ │ ├── led.cpp │ │ ├── led2-cpp.h │ │ ├── led2.cpp │ │ └── main │ │ │ ├── main-145-leds-blinky.c │ │ │ ├── main-145-leds-blinky.cpp │ │ │ ├── main-200-none-loop-blinky.c │ │ │ ├── main-200-none-loop-blinky.cpp │ │ │ ├── main-200-retarget-loop-blinky.c │ │ │ ├── main-200-retarget-loop-blinky.cpp │ │ │ ├── main-200-semihosting-loop-blinky.c │ │ │ └── main-200-semihosting-loop-blinky.cpp │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.templates.xpack.ui │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── templates │ │ ├── hello-world-arm-qemu-xpack-project │ │ ├── qemu-liquid.launch │ │ ├── template.properties │ │ └── template.xml │ │ └── hello-world-riscv-qemu-xpack-project │ │ ├── qemu-liquid.launch │ │ ├── template.properties │ │ └── template.xml ├── org.eclipse.embedcdt.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── embedcdt │ │ ├── internal │ │ └── ui │ │ │ ├── AbstractUIActivator.java │ │ │ ├── Activator.java │ │ │ ├── Messages.java │ │ │ ├── messages.properties │ │ │ ├── preferences │ │ │ └── McuPreferencesPage.java │ │ │ └── properties │ │ │ └── McuPropertiesPage.java │ │ └── ui │ │ ├── DirectoryNotStrictFieldEditor.java │ │ ├── DirectoryNotStrictVariableFieldEditor.java │ │ ├── EclipseUiUtils.java │ │ ├── FieldEditorPropertyPage.java │ │ ├── LabelFakeFieldEditor.java │ │ ├── StringVariableFieldEditor.java │ │ ├── SystemUIJob.java │ │ ├── ThemeColorFieldEditor.java │ │ ├── XpackBrowseDialog.java │ │ ├── XpackDirectoryNotStrictFieldEditor.java │ │ ├── preferences │ │ └── ScopedPreferenceStoreWithoutDefaults.java │ │ └── templates │ │ └── core │ │ └── processes │ │ └── ConditionalRunCommandUi.java └── pom.xml ├── pom.xml ├── repositories ├── README.md └── org.eclipse.embedcdt-repository │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── category.xml │ ├── composite │ ├── README.md │ ├── compositeArtifacts.xml │ └── compositeContent.xml │ └── pom.xml ├── scripts ├── README.md ├── bintray │ ├── README.md │ ├── deprecated │ │ ├── publish-riscv-v4-neon-updates-experimental.command │ │ ├── publish-riscv-v4-neon-updates-test.command │ │ ├── publish-riscv-v4-neon-updates.command │ │ ├── publish-updates-experimental.command │ │ ├── publish-updates-test.command │ │ └── publish-updates.command │ ├── publish-5.x-updates.sh │ ├── publish-5.x-v4-neon-updates.command │ ├── publish-updates.sh │ ├── publish-v4-neon-updates-experimental.command │ ├── publish-v4-neon-updates-test.command │ └── publish-v4-neon-updates.command ├── cortexm │ ├── README.md │ ├── convert-arm-asm.sh │ ├── generate-all-template-vectors.sh │ └── generate-vectors-from-arm-startup.sh ├── foundation │ ├── README.md │ ├── change_to_eplv2.sh │ ├── check-copyright.sh │ ├── check-license.sh │ ├── create-cqs.sh │ ├── create-initial-cq.sh │ └── create-template-ilg-cq.sh ├── jenkins │ ├── README.md │ ├── builds-upload.sh │ └── builds.Jenkinsfile ├── other │ ├── README.md │ └── vectors.sed └── style │ ├── cleanupsettings.xml │ ├── do_add_all_file_types_to_gitattributes.sh │ ├── do_all_code_cleanups.sh │ ├── do_fix_file_permissions.sh │ ├── do_format_code.sh │ ├── do_project_settings.sh │ ├── do_remove_trailing_whitespace.sh │ └── formattersettings.xml └── target-platform ├── org.eclipse.embedcdt.baseline.target ├── org.eclipse.embedcdt.target-platform.target └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README-EPP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/README-EPP.md -------------------------------------------------------------------------------- /README-MAINTAINER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/README-MAINTAINER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/README.md -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.codered-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.codered-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.jlink-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.openocd-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.pyocd-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.gdbjtag.qemu-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.debug.packs-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.debug.packs-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross.arm-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.riscv-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.managedbuild.cross.riscv-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.managedbuild.cross.riscv-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.packs-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.packs-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.ad-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.ad-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.cortexm-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.cortexm-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.cortexm-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.cortexm-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.cortexm-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.cortexm-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.freescale-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.freescale-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.freescale-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.freescale-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.freescale-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.freescale-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.freescale-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.freescale-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.freescale-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.sifive-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.sifive-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.stm-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.stm-branding/plugin.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/.project -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/GME-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/GME-32.png -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/about.html -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/about.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/about.ini -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/about.mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/about.mappings -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/about.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/about.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/build.properties -------------------------------------------------------------------------------- /branding/org.eclipse.embedcdt.templates.xpack-branding/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/org.eclipse.embedcdt.templates.xpack-branding/plugin.properties -------------------------------------------------------------------------------- /branding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/branding/pom.xml -------------------------------------------------------------------------------- /debug.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/debug.options -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.codered-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.codered-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.jlink-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.openocd-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.pyocd-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.debug.gdbjtag.qemu-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.doc.user-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.doc.user-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.managedbuild.cross.arm-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.riscv-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.managedbuild.cross.riscv-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.riscv-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.managedbuild.cross.riscv-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.managedbuild.cross.riscv-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.packs-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.packs-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.ad-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.ad-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.cortexm-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.cortexm-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.cortexm-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.cortexm-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.cortexm-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.cortexm-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.freescale-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.freescale-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.freescale-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.freescale-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.freescale-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.freescale-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.freescale-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.freescale-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.freescale-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.sifive-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.sifive-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.sifive-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.sifive-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.sifive-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.sifive-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.stm-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.stm-feature/p2.inf -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/epl-2.0.html -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.embedcdt.templates.xpack-feature/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/org.eclipse.embedcdt.templates.xpack-feature/p2.inf -------------------------------------------------------------------------------- /features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/features/pom.xml -------------------------------------------------------------------------------- /info/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/info/BUILD.txt -------------------------------------------------------------------------------- /info/Compatibility IDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/info/Compatibility IDs.md -------------------------------------------------------------------------------- /info/FORMATTING.md: -------------------------------------------------------------------------------- 1 | ## GNU C/C++ Formatting Style 2 | 3 | Available from [Gist](https://gist.github.com/ilg-ul/b14101ce7a58a06f3346). 4 | -------------------------------------------------------------------------------- /info/GCC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/info/GCC.txt -------------------------------------------------------------------------------- /info/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/info/VERSIONS.md -------------------------------------------------------------------------------- /info/p2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/info/p2.md -------------------------------------------------------------------------------- /parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/parent/pom.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/icons/cr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/icons/cr.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.codered.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.codered.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/README.md -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/ST4-4.0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/ST4-4.0.8.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/antlr-runtime-3.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/antlr-runtime-3.5.2.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/jackson-annotations-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/jackson-annotations-2.9.9.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/jackson-core-2.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/jackson-core-2.9.9.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/jackson-databind-2.9.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/jackson-databind-2.9.9.3.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/json-simple-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/json-simple-1.1.1.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/lib/org.jsoup_1.7.2.v201411291515.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/lib/org.jsoup_1.7.2.v201411291515.jar -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/src/README.md -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/src/org/eclipse/embedcdt/core/IDs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/src/org/eclipse/embedcdt/core/IDs.java -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.core/src/org/eclipse/embedcdt/core/Xml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.core/src/org/eclipse/embedcdt/core/Xml.java -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.core/schema/svd_path.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.core/schema/svd_path.exsd -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/TODO.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.core/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.core/preferences.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.core/preferences.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.jlink.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.openocd.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.core/preferences.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.pyocd.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.core/preferences.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.qemu.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.restart.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/field.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/filter.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/filter_rem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/filter_rem.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/memory.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/peripheral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/peripheral.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/register_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/icons/register_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.debug.gdbjtag.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/README.md -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/before_you_begin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/before_you_begin.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/concepts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/concepts.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/home.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/preferences.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/templates.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_custom.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_devkit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_devkit.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_path.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_yagarto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/toolchain_yagarto.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/concepts/toolchains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/concepts/toolchains.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/getting_started/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/getting_started/overview.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/getting_started/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/getting_started/tutorial.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/references/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/references/references.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/references/whats_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/references/whats_new.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/tasks/create_projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/tasks/create_projects.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/tasks/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/tasks/tasks.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/toc.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/topics_Concepts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/topics_Concepts.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/topics_Getting_Started.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/topics_Getting_Started.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/topics_References.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/topics_References.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.doc.user/topics_Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.doc.user/topics_Tasks.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/README.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.arm.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.core/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.core/preferences.ini -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/README.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /target/ 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.riscv.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.cross.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.cross.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.managedbuild.packs.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.managedbuild.packs.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/README.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/TODO.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.core/schema/packs_data.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.core/schema/packs_data.exsd -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/activity.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/ar_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/ar_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/binaries_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/binaries_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/board.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/board_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/board_grey.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/bundle.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/c_file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/c_file_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/chm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/chm.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/codeassist_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/codeassist_co.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/collapseall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/collapseall.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/component.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/config-profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/config-profile.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/default_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/default_co.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/define_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/define_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/empty_pack_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/empty_pack_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/exec_dbg_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/exec_dbg_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/exec_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/exec_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/expandall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/expandall.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/external_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/external_browser.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/file_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/file_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/genericvariable_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/genericvariable_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/h_file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/h_file_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/hardware_chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/hardware_chip.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/hardware_chip_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/hardware_chip_grey.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/hfolder_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/hfolder_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/include_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/include_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/includes_container.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/includes_container.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/info_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/info_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/int_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/int_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/jar_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/jar_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/javaassist_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/javaassist_co.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/jdoc_tag_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/jdoc_tag_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/jtypeassist_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/jtypeassist_co.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/jtypeassist_co_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/jtypeassist_co_grey.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/keyword_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/keyword_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/label_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/label_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/library_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/library_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/logical_package_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/logical_package_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/memory_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/memory_view.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/method_private_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/method_private_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/method_public_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/method_public_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/methpri_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/methpri_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/methpro_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/methpro_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/outline_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/outline_co.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/pack_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/pack_folder.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/package_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/package_mode.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/package_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/package_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/package_obj_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/package_obj_grey.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/packages.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/pdficon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/pdficon_small.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/refresh_nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/refresh_nav.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/removeall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/removeall.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/s_file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/s_file_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/sample.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/smartmode_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/smartmode_co.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/time_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/time_obj.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/unknown_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/unknown_obj.gif -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/icons/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/icons/zip.png -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.packs.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.packs.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.ad.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/templates/aducm36x_exe_c_project/src/main-101-include-timer.c: -------------------------------------------------------------------------------- 1 | 2 | #include "timer.h" 3 | 4 | 5 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.ad.ui/templates/aducm36x_exe_c_project/src/main-201-start-timer.c: -------------------------------------------------------------------------------- 1 | 2 | timer_start (); 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/templates/LICENSE -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.core/templates/README.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/common/src/main/main-220-loopend.c: -------------------------------------------------------------------------------- 1 | } 2 | // Infinite loop, never return. 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/common/src/main/main-220-none-loopend.c: -------------------------------------------------------------------------------- 1 | } 2 | // Infinite loop, never return. 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/common/src/main/main-220-retarget-loopend.c: -------------------------------------------------------------------------------- 1 | } 2 | // Infinite loop, never return. 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.core/templates/common/src/main/main-220-semihosting-loopend.c: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.cortexm.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.cortexm.ui/templates/cortexm_project/src/main-20-timer-init.c: -------------------------------------------------------------------------------- 1 | 2 | timer_start (); 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.gitignore -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.pe.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.freescale.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.freescale.ui/templates/klxx_exe_c_project/include/led-20-headers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/README.md -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.sifive.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.sifive.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/templates/LICENSE -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.stm.ui/templates/README.txt -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f0xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | #include "$(CMSIS_name)_hal.h" 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f1xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f2xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f3xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f4xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | #include "$(CMSIS_name)_hal.h" 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f4xx_exe_c_project/src/main/main-145-leds-blinky.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f7xx_exe_c_project/src/led-20-headers.h: -------------------------------------------------------------------------------- 1 | #include "$(CMSIS_name)_hal.h" 2 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.stm.ui/templates/stm32f7xx_exe_c_project/src/main/main-145-leds-blinky.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.templates.xpack.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.templates.xpack.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.classpath -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.options -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.project -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/about.html -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/build.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/plugin.properties -------------------------------------------------------------------------------- /plugins/org.eclipse.embedcdt.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/org.eclipse.embedcdt.ui/plugin.xml -------------------------------------------------------------------------------- /plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/plugins/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/pom.xml -------------------------------------------------------------------------------- /repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/README.md -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/org.eclipse.embedcdt-repository/.gitignore -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/org.eclipse.embedcdt-repository/.project -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/org.eclipse.embedcdt-repository/category.xml -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/composite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/org.eclipse.embedcdt-repository/composite/README.md -------------------------------------------------------------------------------- /repositories/org.eclipse.embedcdt-repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/repositories/org.eclipse.embedcdt-repository/pom.xml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bintray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/README.md -------------------------------------------------------------------------------- /scripts/bintray/deprecated/publish-riscv-v4-neon-updates-test.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/deprecated/publish-riscv-v4-neon-updates-test.command -------------------------------------------------------------------------------- /scripts/bintray/deprecated/publish-riscv-v4-neon-updates.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/deprecated/publish-riscv-v4-neon-updates.command -------------------------------------------------------------------------------- /scripts/bintray/deprecated/publish-updates-experimental.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/deprecated/publish-updates-experimental.command -------------------------------------------------------------------------------- /scripts/bintray/deprecated/publish-updates-test.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/deprecated/publish-updates-test.command -------------------------------------------------------------------------------- /scripts/bintray/deprecated/publish-updates.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/deprecated/publish-updates.command -------------------------------------------------------------------------------- /scripts/bintray/publish-5.x-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-5.x-updates.sh -------------------------------------------------------------------------------- /scripts/bintray/publish-5.x-v4-neon-updates.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-5.x-v4-neon-updates.command -------------------------------------------------------------------------------- /scripts/bintray/publish-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-updates.sh -------------------------------------------------------------------------------- /scripts/bintray/publish-v4-neon-updates-experimental.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-v4-neon-updates-experimental.command -------------------------------------------------------------------------------- /scripts/bintray/publish-v4-neon-updates-test.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-v4-neon-updates-test.command -------------------------------------------------------------------------------- /scripts/bintray/publish-v4-neon-updates.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/bintray/publish-v4-neon-updates.command -------------------------------------------------------------------------------- /scripts/cortexm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/cortexm/README.md -------------------------------------------------------------------------------- /scripts/cortexm/convert-arm-asm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/cortexm/convert-arm-asm.sh -------------------------------------------------------------------------------- /scripts/cortexm/generate-all-template-vectors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/cortexm/generate-all-template-vectors.sh -------------------------------------------------------------------------------- /scripts/cortexm/generate-vectors-from-arm-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/cortexm/generate-vectors-from-arm-startup.sh -------------------------------------------------------------------------------- /scripts/foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/README.md -------------------------------------------------------------------------------- /scripts/foundation/change_to_eplv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/change_to_eplv2.sh -------------------------------------------------------------------------------- /scripts/foundation/check-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/check-copyright.sh -------------------------------------------------------------------------------- /scripts/foundation/check-license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/check-license.sh -------------------------------------------------------------------------------- /scripts/foundation/create-cqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/create-cqs.sh -------------------------------------------------------------------------------- /scripts/foundation/create-initial-cq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/create-initial-cq.sh -------------------------------------------------------------------------------- /scripts/foundation/create-template-ilg-cq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/foundation/create-template-ilg-cq.sh -------------------------------------------------------------------------------- /scripts/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/jenkins/README.md -------------------------------------------------------------------------------- /scripts/jenkins/builds-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/jenkins/builds-upload.sh -------------------------------------------------------------------------------- /scripts/jenkins/builds.Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/jenkins/builds.Jenkinsfile -------------------------------------------------------------------------------- /scripts/other/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/other/README.md -------------------------------------------------------------------------------- /scripts/other/vectors.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/other/vectors.sed -------------------------------------------------------------------------------- /scripts/style/cleanupsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/cleanupsettings.xml -------------------------------------------------------------------------------- /scripts/style/do_add_all_file_types_to_gitattributes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_add_all_file_types_to_gitattributes.sh -------------------------------------------------------------------------------- /scripts/style/do_all_code_cleanups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_all_code_cleanups.sh -------------------------------------------------------------------------------- /scripts/style/do_fix_file_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_fix_file_permissions.sh -------------------------------------------------------------------------------- /scripts/style/do_format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_format_code.sh -------------------------------------------------------------------------------- /scripts/style/do_project_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_project_settings.sh -------------------------------------------------------------------------------- /scripts/style/do_remove_trailing_whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/do_remove_trailing_whitespace.sh -------------------------------------------------------------------------------- /scripts/style/formattersettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/scripts/style/formattersettings.xml -------------------------------------------------------------------------------- /target-platform/org.eclipse.embedcdt.baseline.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/target-platform/org.eclipse.embedcdt.baseline.target -------------------------------------------------------------------------------- /target-platform/org.eclipse.embedcdt.target-platform.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/target-platform/org.eclipse.embedcdt.target-platform.target -------------------------------------------------------------------------------- /target-platform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-embed-cdt/eclipse-plugins/HEAD/target-platform/pom.xml --------------------------------------------------------------------------------