Giter Club home page Giter Club logo

martinribelotta / embedded-ide Goto Github PK

View Code? Open in Web Editor NEW
152.0 14.0 32.0 9.9 MB

IDE for C embedded development centered on bare-metal ARM systems

Home Page: http://martinribelotta.github.io/embedded-ide/

License: GNU General Public License v3.0

C++ 93.83% QMake 0.74% C 4.21% Shell 1.02% CSS 0.01% Makefile 0.01% Python 0.13% JavaScript 0.06% HTML 0.01%
embedded integrated-development-environment ide embedded-systems cortex-m makefile gcc qt5 c-plus-plus clang

embedded-ide's Introduction

Embedded IDE

Makefile based, C/C++ IDE

Main Screen

Features

  • Syntax highlighter (C/C++/Makefile)
  • Autocomplete (requires clang installed on path)
  • Target autodiscover
  • Source filter
  • Project import/export
  • Console log

Requirements

  • GNU Make (required)
  • Qt5
  • QScintilla2
  • clang (optional for autocompletion)
  • diff and patch (optional for import/export project)
  • universal-ctags (optional for code indexing)

Installation

To compile and install IDE you need Qt5 (5.2 or later) and make/gcc (build-essential en Ubuntu and derived)

In base directory run:

qmake && make

When the process is finished, the executable is in build directory with the name embedded-ide (with EXE extention on windows)

To install it into the system copy build/embedded-ide to directory into the PATH

Install dependencies

The full toolset installation (for ubuntu and derivatives) is:

sudo apt-get install clang diffutils patch ctags make

Additionally you need a compiler to work correctly. All gcc based compilers are supported, such as:

Adding tools to the PATH

In order to find utilities, you need to add them to the PATH, but doing it globally is dangerous in certain cases (Example, windows with multiple toolchains with similar names)

Alternatively, the IDE provides an Additional PATHs feature to configure the PATH only for IDE and not for the entire system.

Go to Configure icon and next go to Tools tab.

Into Additional PATHs section you can add multiple directories. The list is append to system PATH at runtime in top-to-bottom order.

Screenshots

embedded-ide's People

Contributors

arlon1 avatar ctag avatar denisacostaq avatar epernia avatar martinribelotta avatar mribelottaemtech avatar pridolfi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

embedded-ide's Issues

Comprotamiento no deseado con Ctrl+I

Al realizarlo no le da bola a la identación elegida en configuración sino que siempre pone 4 espacios (yo lo tengo configurado en 3 espacios).

Tampoco permite hacer dehacer luego del Ctrl+I

Add debugger support

Add debugger support GDB MI/MI2

  • Remote support
  • Execute/Stop/Run
  • Step/Step Into
  • Breakpoints
  • Stack view
  • Step over/Step Into
  • Local support
  • Expression evaluator
  • Memory inspection
  • Register support
  • Disassembler support
  • Thread support

Qt ejecutable embebido

Hola martin, soy el que estaba haciendo el IDE para GHDL, me gustaria terminarlo y para eso te queria hacer una consulta (sorry si te escribo por aca no queria desvirtuar embebidos32)
Vi que en la ultima version de embedded ide compilaste TODO en un solo ejecutable(el programa de Qt + gcc+arm+none-eabi + etc) y yo queria hacer lo mismo ( IDE + ghdl + gtkwave en un mismo .appimage o .exe) como hiciste?
intente añadir el ejecutable al resource file (.qrc) y abrirlo con qprocess pero demora tanto que se me tilda la compu durante la compilacion capas estoy haciendo algo mal...

Bug en herramienta "Buscar simbolo bajo el cursor"

Buen día Martín te comento el siguiente bug (según mi criterio) que he encontrado.

La herramienta en general funciona muy bien, ahora bien si yo por algún motivo busco dos veces la misma función y selecciono dos veces el archivo donde se encuentra definida o declarada la misma, el archivo en el IDE se abre las dos veces sin importar si ya está abierto o no. Esto pasa de forma indefinida como se ve en la imagen

image

Estoy atento a cualquier duda que genere mi explicación. Saludos
Ariel

Sorry

Sorry wrong topic

Auto-guardado de archivos al compilar

Estaría bueno que se pueda activar en la configuración del IDE un auto-guardado de archivos abiertos al compilar. Podría venir por defecto activado y si a algún usuario le molesta lo puede desactivar.

Add "Snippets" - Feature

Algo útil en otros editores/ides, es tener una opción para guardar pedacitos de código, como para no tener que andar revolviendo código de otros proyectos en busca de aquel que hacia que la cosa ande.
Uno bastante bueno, como para tener una idea mas clara de la sugerencia, es aquel que trae kate, el editor de kde.
Saludos

Errores de Shortcuts

No funciona recargar archivo con Ctrl+R.

Ctrl+X Debe cerrar solo el proyecto sin cerrar los archivos. Esto es muy discutible, es copado que queden para traerte algo de otro proyecto sin salir del IDE pero a veces es confuso para los novatos.

Cerrar archivo debería ser Ctrl+X, por eso el anterior tiene shift.

Ctrl+Shift+Z es Ctrl+Y en el editor (rehacer). Esto se arregla modificando la imagen.

Ctrl + Enter no funciona, seria el buscar simbolo bajo el cursor.

Agregar shortcuts en la imagen:
Ctrl++ ==> Zoom in
Ctrl+- ==> Zoom out
Esto se arregla modificando la imagen.

Add TODO indexer - Feature

Hola compañero desarrollador. Esto no lo he visto en ningún otro editor, lo cual no quita que exista, pero me pareció interesante.
Que tal hacer un indexador TODO, algo que sea un poquito mas complejo que usar el buscador con la palabra clave TODO. O sea, un listadito de cosas por hacer, en donde este la palabra clave TODO, junto con una pequeña descripción.
Saludos

Embedded IDE Themes [enchancement]

Al cambiar el tema del editor a un tema oscuro el cursor sigue negro y casi no se ve (no se puede cambiar por ejemplo a blanco el tema del cursor).

Al cambiar a un tema oscuro el IDE, el editor deberia tener un dark theme default también.

Otra mejora seria que los temas esten en una carpeta dentro de la ccarpeta del IDE asi se le pueden agregar más. Es decir que no vengan embebidos dentro del ejecutable.

Add dark theme support

Add dark theme for integration with dark desktop themes.

Sub issues

  • Add option to change between light and dark theme in configuration.
  • Review the icon theme or add second theme for dark configuration.

ConsoleInterceptor doesn't need parent

ConsoleInterceptor direct msg to logview, acting like a decorator to logview. While parent is used to manage the ralationships between QWidgets, and logview has one.

btw. there is a typo in the code, knowed should be known.

Add support for .editorconfig files

The .editorconfig file apear as a standard form to share configuration between different IDEs.

See: https://editorconfig.org/

This approach need:

  • Recognise and load .editorconfig file format (ini parser)
  • Optional save current relevant configuration to .editorconfig in actual project file base
  • Add per-file configuration extracted of respective .editorconfig database

Sometimes, files are opened to me in gedit

When somebody gives me an external project, paste the project in my workspace. I open the embedded ide, and click in "open project", i select the makefile and all is fine, but when i click in some file, to edit the text, it is opened in gedit.
It is only when i open externals projects
Any solution ?

Cuando alguien me da un proyecto externo, pego la carpeta en mi workspace, luego abro el IDE, selecciono abrir proyecto, busco el makefile y lo carga perfecto. Pero el problema es que cuando quiero editar el texto, le doy click a cualquier archivo, y me lo abre con el gedit, no en el mismo IDE.
Esto pasa solo cuando abro proyectos que yo no creo.
Hay alguna manera de que me los abra desde el IDE? O sino alguna solución que no sea desde el ide mismo, ya que no soy tan buen usuario de linux.

Desde ya gracias y saludos ! !

Translations

Find translators for:

  • zh-CN: Simplified Cinese
  • de-DE: German
  • ja-JP: Japanese
  • it-IT: Italian
  • pt-BR: Brazilian

More...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.