1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
#ifndef PCB_GERBER_CONF_H
#define PCB_GERBER_CONF_H
#include <librnd/core/conf.h>
typedef struct {
const struct {
const struct {
RND_CFT_BOOLEAN plated_g85_slot; /* use G85 (drill cycle instead of route) for plated slots - only affects direct gerber export, DO NOT USE, check excellon's config instead */
RND_CFT_BOOLEAN unplated_g85_slot; /* use G85 (drill cycle instead of route) for unplated slots - only affects direct gerber export, DO NOT USE, check excellon's config instead */
} export_gerber;
} plugins;
} conf_gerber_t;
#endif
|