Commit 82509640 authored by viknn's avatar viknn

Added item DATASHEET to BOM List in schematic

parent 02d724af
...@@ -875,6 +875,11 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart( ...@@ -875,6 +875,11 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
fprintf( f, "%c%15s", s_ExportSeparatorSymbol, fprintf( f, "%c%15s", s_ExportSeparatorSymbol,
CONV_TO_UTF8( DrawLibItem->GetField( FOOTPRINT )->m_Text ) ); CONV_TO_UTF8( DrawLibItem->GetField( FOOTPRINT )->m_Text ) );
#if defined(KICAD_GOST)
fprintf( f, "%c%20s", s_ExportSeparatorSymbol,
CONV_TO_UTF8( DrawLibItem->GetField( DATASHEET) ->m_Text ) );
#endif
// print fields // print fields
for( int jj = FIELD1; jj < FIELD5; jj++ ) for( int jj = FIELD1; jj < FIELD5; jj++ )
fprintf( f, "%c%12s", s_ExportSeparatorSymbol, fprintf( f, "%c%12s", s_ExportSeparatorSymbol,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment