Altium Schematic Import: add note that blanket's are not yet supported
This commit is contained in:
parent
cdbb868198
commit
04165b22d1
|
@ -103,6 +103,7 @@ enum class ALTIUM_SCH_RECORD
|
|||
HARNESS_ENTRY = 216,
|
||||
HARNESS_TYPE = 217,
|
||||
SIGNAL_HARNESS = 218,
|
||||
BLANKET = 225,
|
||||
RECORD_226 = 226,
|
||||
};
|
||||
|
||||
|
|
|
@ -496,6 +496,10 @@ void SCH_ALTIUM_PLUGIN::ParseAdditional( const ALTIUM_COMPOUND_FILE& aAltiumSchF
|
|||
ParseSignalHarness( properties );
|
||||
break;
|
||||
|
||||
case ALTIUM_SCH_RECORD::BLANKET:
|
||||
m_reporter->Report( _( "Blanket not currently supported." ), RPT_SEVERITY_ERROR );
|
||||
break;
|
||||
|
||||
default:
|
||||
m_reporter->Report( wxString::Format( _( "Unknown or unexpected record ID %d found "
|
||||
"inside \"Additional\" section." ),
|
||||
|
|
Loading…
Reference in New Issue