Index: trunk/src_plugins/export_openems/openems_xml.c =================================================================== --- trunk/src_plugins/export_openems/openems_xml.c (revision 31979) +++ trunk/src_plugins/export_openems/openems_xml.c (revision 31980) @@ -28,6 +28,20 @@ static double def_end_crit = 1e-05; static long def_f_max = 2100000000; +static void openems_wr_xml_layers(wctx_t *ctx) +{ + fprintf(ctx->f, " \n"); + + fprintf(ctx->f, " \n"); +} + +static void openems_wr_xml_grid(wctx_t *ctx) +{ + fprintf(ctx->f, " \n"); + + fprintf(ctx->f, " \n"); +} + static void openems_wr_xml(wctx_t *ctx) { pcb_mesh_t *mesh = pcb_mesh_get(MESH_NAME); @@ -54,6 +68,12 @@ fprintf(ctx->f, " \n"); } + fprintf(ctx->f, " \n"); + openems_wr_xml_layers(ctx); + openems_wr_xml_grid(ctx); + fprintf(ctx->f, " \n"); + + fprintf(ctx->f, " \n"); fprintf(ctx->f, "\n"); }