Altium Schematic Import: add note that blanket's are not yet supported

This commit is contained in:
Stefan 2023-02-22 23:10:40 +00:00 committed by Jon Evans
parent cdbb868198
commit 04165b22d1
2 changed files with 5 additions and 0 deletions

View File

@ -103,6 +103,7 @@ enum class ALTIUM_SCH_RECORD
HARNESS_ENTRY = 216, HARNESS_ENTRY = 216,
HARNESS_TYPE = 217, HARNESS_TYPE = 217,
SIGNAL_HARNESS = 218, SIGNAL_HARNESS = 218,
BLANKET = 225,
RECORD_226 = 226, RECORD_226 = 226,
}; };

View File

@ -496,6 +496,10 @@ void SCH_ALTIUM_PLUGIN::ParseAdditional( const ALTIUM_COMPOUND_FILE& aAltiumSchF
ParseSignalHarness( properties ); ParseSignalHarness( properties );
break; break;
case ALTIUM_SCH_RECORD::BLANKET:
m_reporter->Report( _( "Blanket not currently supported." ), RPT_SEVERITY_ERROR );
break;
default: default:
m_reporter->Report( wxString::Format( _( "Unknown or unexpected record ID %d found " m_reporter->Report( wxString::Format( _( "Unknown or unexpected record ID %d found "
"inside \"Additional\" section." ), "inside \"Additional\" section." ),