will be possible to have an official plugin that supports Arduino to 100% of NetBeans and Eclipse? would be a great help to all developers
would be a great help to all developers
No, it wouldn't. I'd never use it.
How would it be better than Gedit and the Arduino IDE?
...R
Hello!
This NetBeans plugin is working very well for my projects: http://plugins.netbeans.org/plugin/46054/arduino
For the plugin work properly, the original IDE must placed in a path without spaces, like c:\arduino-1.0.5.
I'm currently maintaining this opensource project. Help or troubles, please contact me.
Att,
Jaques
possible to have an official plugin that supports Arduino to 100% of NetBeans and Eclipse?
Official from whom? It seems unlikely that the Arduino team would do this. If you want the netbeans or Eclipse people to support Arduino, you're probably asking in the wrong place.
jaques:
Hello!This NetBeans plugin is working very well for my projects: http://plugins.netbeans.org/plugin/46054/arduino
For the plugin work properly, the original IDE must placed in a path without spaces, like c:\arduino-1.0.5.
I'm currently maintaining this opensource project. Help or troubles, please contact me.
Att,
Jaques
I'm trying to use precisely that plugin. I have followed the instructions in
http://arduino-netbeans.googlecode.com/files/Install.pdf
After that when I try to build a simple test sketch I get this message
avr-ar rcs lib/core/arduinocore.a
avr-ar: lib/core/arduinocore.a: No such file or directory
make: *** [lib/core/arduinocore.a] Error 1
BUILD FAILED (exit value 2, total time: 250ms)
For Windows the Makefile seems a bit fragile. I saw the same issue as jfri. Eventually, I fixed the problem by making sure:
- both my NetBeans project and the Arduino install was on the same Windows Drive (same drive letter)
- there was no drive letter nor absolute path in the Makefile (e.g. used ../../arduino-1.5.2/restOfPath). Changed so project Makefile referred to the Arduino install path as a relative path. It would probably be best to always place it in parallel with your project directory
Hey, how did you acquire the arduinocore.a and arduinolibs.a for the netbeans plugin? I already tried compiling the core into a static library (successfully), but i can't get the libs to work. They throw a lot of errors, including some i'm unsure of. So, yeah, any advice on how to get those two libraries is appreciated
edit: Nevermind that. The plugin generates those for you. yay!
So all that isn't working except being in accordance to all guides is the "make upload" on hitting "run", but i'll figure that one out eventually. For some reason it tries this lol:
Cannot run program "make" (in directory "C:\Users\Wolff\Documents\NetBeansProjects\ArduinoTest"): CreateProcess error=2, The system cannot find the file specified
Which obviously doesn't work, i have no idea why it's trying to use a make in there, i specified this make in the build chain:
C:\Arduino\hardware\tools\avr\utils\bin\make.exe
edit2: Aaand i also fixed that Problem. Under "Run" in the Project Properties, switch "Console Type" to "External Terminal". In the makefile of the project you have to put backslashes before every colon, under windows there usually should only be one colon, like this:
ARDUINO_BASE_DIR = C\:/Arduino
Further information: Every library you use you have to add in the makefile at:
INCLUDE_LIBS=WiFi/utility;WiFi;Time;
And also note that some libraries for some reason also have to be added as source code to the project, don't ask me why. To do that, simply rightclick the project and select "Add Existing Items from Folders..." and select the basefolder of the library you want to use.