erichVK5 / BXL2text

A utility to convert huffman encoded BXL schematic and footprint files to plain text, gEDA PCB (.fp) and gschem (.sym), and KiCad (.lib) formats
GNU General Public License v2.0
22 stars 9 forks source link

Compilation Issue 0 #2

Closed madmax76 closed 8 years ago

madmax76 commented 8 years ago

I get many of these errors while compiling:

SymbolText.java:36: error: unmappable character for encoding ASCII
//??? type = always 0.

Problem is that in the header of some files "a bulleted list" is used and they are not translated correctly, at least not on my terminals. After removing them, these issues are solved.

Example:

//• orientation = horizontal orientation (=0) or vertical (=1).
//• type = always 0.
//• unit = 0 if common to the parts. If not, the number of the part (1. .n).
//• convert = 0 if common to the representations, if not 1 or 2.

It is present in the following files:

SymbolPin.java
SymbolPolyline.java
SymbolRectangle.java
SymbolText.java

Also there is an empty else if that java on OSX does not seem to like:

Footprint.java:253: error: illegal start of expression
        else if () {
                 ^

After removing it, compilation proceeds correctly.

erichVK5 commented 8 years ago

Thank you, I will amend the files accordingly.