[Report] Removed warning for drill tool missmatch

- When an NPTH hole with drill size == pad size is found and its
  diameter isn't standard.
- We verified KiCad doesn't really generate a pad in this case.

See #326
This commit is contained in:
Salvador E. Tropea 2022-11-08 14:13:08 -03:00
parent eee7b5d75b
commit e42ab5e6be
1 changed files with 2 additions and 6 deletions

View File

@ -501,12 +501,8 @@ class ReportOptions(BaseOptions):
if pad_sz == dr:
logger.warning(W_WRONGOAR+"Try adjusting the drill size to an available drill tool")
else:
# For non plated holes we don't use values resulting from the fact that the tool is smaller
if oar_t < min_oar and pad_sz == dr:
logger.warning(W_WRONGOAR+"Potential copper ring for pad {}, change the pad size to ({}, {})".
format(get_pad_info(pad), to_mm(dr_x_real), to_mm(dr_y_real)))
logger.warning(W_WRONGOAR+"Or enlarge both to the size of an available drill tool")
else:
# For non plated holes KiCad doesn't even create a pad if pad_sz == dr
if pad_sz != dr:
self.oar_pads = min(self.oar_pads, oar_t)
self.oar_pads_ec = min(self.oar_pads_ec, oar_ec_t)
elif oar_t < 0: