diff --git a/CHANGELOG.md b/CHANGELOG.md index decb5783..17d56c9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,7 +53,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Basic support for regular list items (#480) - Position: - Experimental support for gerber position files (#500) - - KiKit auxiliary footprints used for panels excluded (#516) - Help for the error levels - Warnings: - Explain about wrong dir/output separation (#493) diff --git a/docs/source/configuration/outputs/position.rst b/docs/source/configuration/outputs/position.rst index 71f676ab..e13499c0 100644 --- a/docs/source/configuration/outputs/position.rst +++ b/docs/source/configuration/outputs/position.rst @@ -43,7 +43,6 @@ Parameters: - ``dnf_filter`` :index:`: ` [string|list(string)='_none'] Name of the filter to mark components as not fitted. A short-cut to use for simple cases where a variant is an overkill. - - ``exclude_strange_footprints`` :index:`: ` [boolean=true] Removes suspicious footprints. Currently removes footprints generated by KiKit to create the panel. - ``gerber_board_edge`` :index:`: ` [boolean=false] Include the board edge in the gerber output. - ``include_virtual`` :index:`: ` [boolean=false] Include virtual components. For special purposes, not pick & place. Note that virtual components is a KiCad 5 concept. diff --git a/kibot/out_position.py b/kibot/out_position.py index f4267ae7..0d0263e1 100644 --- a/kibot/out_position.py +++ b/kibot/out_position.py @@ -91,8 +91,6 @@ class PositionOptions(VariantOptions): """ When generating the CSV quote all values, even numbers """ self.gerber_board_edge = False """ Include the board edge in the gerber output """ - self.exclude_strange_footprints = True - """ Removes suspicious footprints. Currently removes footprints generated by KiKit to create the panel """ super().__init__() self._expand_id = 'position' @@ -274,9 +272,6 @@ class PositionOptions(VariantOptions): for m in sorted(GS.get_modules(), key=lambda c: _ref_key(c.GetReference())): ref = m.GetReference() logger.debug('P&P ref: {}'.format(ref)) - if self.exclude_strange_footprints and ref.startswith('KiKit_'): - logger.debug('- KiKit auxiliary, excluded') - continue value = None # Apply any filter or variant data if comps_hash: