-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for assembly files in IDE [imported] #274
Comments
I'd like to use your Arduino IDE. Not bad how fast (and from the user point of view good looking) you always get things patched. |
@NicoHood thx for the feedback. For now I'm still working on some of the core features from my master list (grew a lot and right now it looks more like a 2.0 than a 1.7.xx). I shared with @mbanzi and his team how it would be easy to make a lot of improvements fast, provided that a deep initial cleanup would be done. I guess the issue is not so much how difficult it is to write things, but more whether or not it is obvious that they can be. |
Let prints on GW:s be up to MY_GATEWAY_MAX_SEND_LENGTH large
This is Issue 274 moved from a Google Code project.
Added by 2010-06-11T10:54:38.000Z by [email protected].
Please review that bug for more context and additional comments, but update this bug.
Closed (Duplicate).
Original labels: Type-Enhancement, Priority-Medium, Component-IDE
Original description
What change would like to see?
As described in http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1276151354 the Arduino IDE doesn't support .S (assembly) files.
Whenever someone wants to use these, they have to be put in a library, which makes editing them from the IDE impossible.
Why?
Even though it's probably for some advanced users only, since it only requires very small changes, I think we should add it.
The compile scripts already support .S files, they're just not opened in the IDE or copied to the 'work folder'.
Would this cause any incompatibilities with previous versions? If so, how
can these be mitigated?
I don't foresee any real incompatibilities. If someone already has .S files in their project directory these will suddenly appear in the IDE and be copied to the 'work folder'.
The changes required are both in app\src\processing\app\Sketch.java (rev. 964).
Line 1345 should be changed to
if (sc.isExtension("c") || sc.isExtension("cpp") || sc.isExtension("h") || sc.isExtension("s")) {
Line 1800 should be changed to
return new String[] { "pde", "c", "cpp", "h", "s" };
The text was updated successfully, but these errors were encountered: