-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
"Do not place" attribute ignored when creating BOM file #490
Comments
KiCAD has seperate flags for "do not populate" and "exclude from BOM" These flags should be used if one does not want a part in the BOM or the CPL. Doing assumptions will lead to someone else show up in the issues and wanting to have another behaviour. I hope I get your description right, if not, let me know |
At first the table columns order should be changed. I am working on an Ubuntu system and the table shows the columns Reference, Value and Footprint. If I expand the dialog window manually (fast way clicking on title bar does not work) to complete witdh I see also the columns LCSC and Type, but not the columns BOM and POS. To see them I have to scroll right, but then I don't see the Reference column. Uaaaa... Regarding your comment. I marked components which should neither be purchased nor equipped by PLCPCB with "Nicht bestücken" (do not place), which is readable by script with the method To my surprise, I found these parts in the CPL and BOM file, which meant that JLCPCB had the parts in the shopping list and the placement list. And all the time manually to exclude these parts is not very comfortable. At the moment I am not sure about the right procedure to handle components which should not be handled by JLCPCB. I think these parts should be in the BOM, because I will buy them later elsewher and solder them by myself. At the moment I use the DNP flag which is also not a perfect solution, because these parts are marked with a big red X in schematic. Later other people will be confused about this, because these components will be available on the print. And it conflicts with spare parts which should not be placed on final print version... I also have seen that sometimes parts are not placed on right position by JLCPCB (for example a Bourns poti). I try to fix this with movement of the footprint, but this doesn't work because your script only looks at the pads and not the footprint X/Y location. Is there any way to tell the plugin to use the X/Y location instead of calculate the location from pads location? Maybe an additional config file in the production_files folder would be the proper clean solution. But that needs a bigger change in the plugin script. |
I am working on Plugin Version 2024.06.04 and KiCad Version 8.0.3-rc1
When creating the production files, I was wondering, that JLCPCB Bill of Material list includes components which are marked in KiCad with the attribute "Do not place" (in german version "Nicht bestücken").
That causes the need to manually exclude these parts. With the following change in fabrication.py method generate_bom() it is possible to solve this problem.
Original version:
Improved version:
The "Do not place" parts are now not in the BOM-file, but they remain in the CPL file. That causes the following warning message when the files are imported in JLCPCB web-page:
I think it is a good idea to let popup this warning, because it indicates that some parts are not ordered and placed, and you can see which parts are concerned. If everything is ok, you can close the message dialog and proceed the order flow...
The text was updated successfully, but these errors were encountered: