altium schematic importer, replace record 211 with compile masks
This commit is contained in:
parent
ed38028eaf
commit
bed51a5fc1
|
@ -89,6 +89,7 @@ enum class ALTIUM_SCH_RECORD
|
|||
RECORD_47 = 47,
|
||||
RECORD_48 = 48,
|
||||
NOTE = 209,
|
||||
COMPILE_MASK = 211,
|
||||
RECORD_215 = 215,
|
||||
RECORD_216 = 216,
|
||||
RECORD_217 = 217,
|
||||
|
|
|
@ -474,6 +474,10 @@ void SCH_ALTIUM_PLUGIN::ParseFileHeader( const CFB::CompoundFileReader& aReader
|
|||
case ALTIUM_SCH_RECORD::NOTE:
|
||||
ParseNote( properties );
|
||||
break;
|
||||
case ALTIUM_SCH_RECORD::COMPILE_MASK:
|
||||
m_reporter->Report( _( "Compile Mask on schematic currently not supported." ),
|
||||
RPT_SEVERITY_ERROR );
|
||||
break;
|
||||
case ALTIUM_SCH_RECORD::RECORD_215:
|
||||
break;
|
||||
case ALTIUM_SCH_RECORD::RECORD_216:
|
||||
|
|
Loading…
Reference in New Issue