diff --git a/pcb/Rakefile b/pcb/Rakefile index ce76aad..1c38cde 100644 --- a/pcb/Rakefile +++ b/pcb/Rakefile @@ -181,12 +181,14 @@ end desc "generate photo realistic picture from layout (front side)" file "#{target}_layout-top.png" => vpcb do |t| - sh "pcb -x png --dpi 600 --format PNG --photo-mode --outfile #{target}_layout-top.png #{t.prerequisites.join(' ')}" +# sh "pcb -x png --dpi 600 --format PNG --photo-mode --outfile #{target}_layout-top.png #{t.prerequisites.join(' ')}" + sh "pcb -x png --format PNG --photo-mode --outfile #{target}_layout-top.png #{t.prerequisites.join(' ')}" end desc "generate photo realistic picture from layout (bottom side)" file "#{target}_layout-bottom.png" => vpcb do |t| - sh "pcb -x png --dpi 600 --format PNG --photo-mode --photo-flip-x --outfile #{target}_layout-bottom.png #{t.prerequisites.join(' ')}" +# sh "pcb -x png --dpi 600 --format PNG --photo-mode --photo-flip-x --outfile #{target}_layout-bottom.png #{t.prerequisites.join(' ')}" + sh "pcb -x png --format PNG --photo-mode --photo-flip-x --outfile #{target}_layout-bottom.png #{t.prerequisites.join(' ')}" end desc "export gerber (and drill) files from layout"