All Projects → UECIDE → UECIDE

UECIDE / UECIDE

Licence: other
Universal Embedded Computing IDE

Programming Languages

java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language
HTML
75241 projects
C++
36643 projects - #6 most used programming language
shell
77523 projects
CSS
56736 projects

Labels

Projects that are alternatives of or similar to UECIDE

intellij-autohotkey
AutoHotkey plugin for the Jetbrain's IntelliJ platform
Stars: ✭ 30 (-58.33%)
Mutual labels:  ide
dotfiles
🍀 Vim/Neovim + Tmux + Zsh + Alacritty = Build your own fantastic development environment
Stars: ✭ 65 (-9.72%)
Mutual labels:  ide
SWET
Selenium WebDriver Page Test / workflow recorder (successor to SWD recorder)
Stars: ✭ 34 (-52.78%)
Mutual labels:  ide
Netlify
A VS Code extension that displays your Netlify build statuses and more!
Stars: ✭ 23 (-68.06%)
Mutual labels:  ide
JetBrainsRunner
A Krunner Plugin which allows you to open your recent projects
Stars: ✭ 31 (-56.94%)
Mutual labels:  ide
uDevkit-IDE
An IDE for uDevkit or C/C++ projects with Git written in Qt5
Stars: ✭ 15 (-79.17%)
Mutual labels:  ide
scalavista-server
A minimalistic Scala language-server
Stars: ✭ 14 (-80.56%)
Mutual labels:  ide
hatchery
🐣 An IDE for building ROS applications
Stars: ✭ 67 (-6.94%)
Mutual labels:  ide
goneovim
A GUI frontend for neovim.
Stars: ✭ 1,721 (+2290.28%)
Mutual labels:  ide
intellij-ui-test-robot
The library allows you to write and execute UI tests among IntelliJ IDEA. You can test your Plugin.
Stars: ✭ 60 (-16.67%)
Mutual labels:  ide
gsmartcontrol
GSmartControl - Hard disk drive and SSD health inspection tool
Stars: ✭ 183 (+154.17%)
Mutual labels:  ide
atom-ide-scala
Scala & Dotty support for Atom IDE (🧟‍♂️ zombie repo)
Stars: ✭ 47 (-34.72%)
Mutual labels:  ide
nana-creator
Nana Creator - a RAD tool for (and built with) Nana C++ Library
Stars: ✭ 83 (+15.28%)
Mutual labels:  ide
graphql-playground
🎮 GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration)
Stars: ✭ 8,103 (+11154.17%)
Mutual labels:  ide
kakoune-ghci-bridge
Get intellisense for Haskell in Kakoune via ghci
Stars: ✭ 13 (-81.94%)
Mutual labels:  ide
DzNoteEditor
Delphi Property Editor for TStrings supporting formatted languages with syntax highlight
Stars: ✭ 18 (-75%)
Mutual labels:  ide
code editor unity
A code editor for MY-BASIC, powered by the Unity3D engine. With this you may create your own Code Editor, Debugger and IDE for different scripting languages.
Stars: ✭ 13 (-81.94%)
Mutual labels:  ide
LunarVim
An IDE layer for Neovim with sane defaults. Completely free and community driven.
Stars: ✭ 9,296 (+12811.11%)
Mutual labels:  ide
WoWDatabaseEditor
Integrated development environment (IDE), an editor for Smart Scripts (SAI/smart_scripts) for TrinityCore based servers. Featuring a 3D view built with OpenGL and custom ECS framework
Stars: ✭ 155 (+115.28%)
Mutual labels:  ide
ExtremeStudio
ExtremeStudio is a PAWN editor and is designed to be used in SA-MP development.
Stars: ✭ 25 (-65.28%)
Mutual labels:  ide

UECIDE

Universal Embedded Computing IDE

First came the Arduino. Arduino forked the Processing IDE and used it for their own ends. Arduino took off big time, and people all over the globe started using it.

Then along came new players to the market - chipKIT, Launchpad, etc.

They all took one look at Arduino, saw it was good, and copied it.

The Arduino IDE has been forked and forked again until it must feel "like an E-chord on an old flat top guitar". Everyone has forked the IDE and bent it to their own ends, each one modified to meet a specific task.

So now, if you have a selection of different boards, you have a selection of copies of the same IDE, but each with its own little tweaks and modifications to support a specific set of boards.

None of them have addressed the basic failings in the IDE that have existed since that first fork, but have inherited a huge amount of cruft and fluff from the original Processing->Arduino conversion. It's not really surprising, after all - they have all focussed on porting it to their specific boards without paying too much time working on the IDE itself.

This project is an attempt to redress the balance. UECIDE is aiming to be a generic IDE based on the Arduino IDE which can easilly support ALL the available boards. It does this by not supporting any boards directly but providing a framework where a board developer or fanatical group can simply drop in the definitions for the boards and the chip on the boards without having to make any modifications to how the IDE works.

Much of the original Arduino IDE code has been ripped out and replaced with custom code that is aimed at being 100% generic. Gone are all the hard-coded executables. Gone is the old single-core structure. Say hello to a nice clean structure which separates the cores from the IDE, and the boards from the core.

Also the IDE itself has had a bit of a makeover. Re-branding the IDE to match your corporate identity is now nice and simple - just a collection of PNG files (gone are the old ropey GIF files) and a couple of text files to create a completely unique branded IDE with no programming whatsoever.

Another major aim of the project is to make it simple to build the IDE for all major platforms (Windows, Linux, Mac, etc) with just one command on a single machine. No need to switch to another operating system just to create the IDE for that platform.

How to compile

First you need to be running Ubuntu or something similar. While it should be possible to compile on any system we have only been developing on Ubuntu so if you need any help and you're not on Ubuntu you're on your own I'm afraid.

Then you need to install openjdk version 6. While we'd love to use some of the nice features of Java 7, thanks to Apple we're not able to (anything older than about 5 minutes ago with Apple only has Java 6 available).

$ sudo apt-get install openjdk-6-jdk

If you want to build the Windows distribution you will also need the mingw packages:

$ sudo apt-get install gcc-mingw32

And of course you will need ant to be able to do the compiling:

$ sudo apt-get install ant

All the building is done from the "build" directory. In there is a configuration file you will need to examine and edit if needed. The main entry you will need to check out is the bootclass.path entry which points to where the Java version 6 core files are. On an Ubuntu system these are stored in /usr/lib/jvm somewhere. If you are on a 32-bit system the default setting won't be right, so you will need to change it. To confirm what it should be you can find all the installed JDK locations with:

bob@computer:~/UECIDE/build$ find /usr/lib/jvm -name rt.jar
/usr/lib/jvm/java-1.5.0-gcj-4.7/jre/lib/rt.jar
/usr/lib/jvm/java-6-openjdk-i386/jre/lib/rt.jar
/usr/lib/jvm/java-7-openjdk-i386/jre/lib/rt.jar

Copy and paste the openjdk 6 line into the bootclass.path setting in the build.settings file.

You should now be good to build:

bob@computer:~/UECIDE/build$ ant

Assuming there are no errors, you should now have a freshly built version of UECIDE available for testing. You can run it with:

bob@computer:~/UECIDE/build$ linux/work/uecide

You can turn your freshly built test version into a zip file for easy distribution with:

bob@computer:~/UECIDE/build$ ant dist

Or a .deb file with:

bob@computer:~/UECIDE/build$ ant deb

Both of which will end up in the linux directory.

If you want to build for a different target system you can, with

bob@computer:~/UECIDE/build$ ant windows-build

You can replace "windows-" with "macosx-". You can also use the "dist" target with the prefixes:

bob@computer:~/UECIDE/build$ ant windows-dist

Build Status

  • Travis: Build Status
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].