1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/eagle-5.7.0/ulp/prevdevdescript.ulp

43 lines
910 B
Text
Raw Normal View History

2010-03-30 20:14:34 +02:00
#usage "<b>Edit previous device description</b>\n"
"<p>"
"<author>Author: support@cadsoft.de</author>"
// THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED
string cmd = "";
string dev[];
string edit = "";
int count = 0;
int n = 0;
if (library) library(L) {
L.devicesets(D) {
count++;
dev[count] = D.name;
cmd += D.name + "\n";
}
}
if (deviceset) deviceset(D) {
edit = D.name;
}
for (n = 1; n < count; n++) {
if (edit == dev[n]) {
break;
}
}
if (n > 1) {
cmd = "EDIT " + dev[n - 1] + ".dev; DESCRIPT\n" ;
// **************************************************
// a ";" must not follow DESCRIPT
// otherwise the description is overwritten
// with an empty string
// **************************************************
}
else
cmd = "EDIT " + dev[1] + ".dev; DESCRIPT\n" ;
exit(cmd);