Add build variant hints

This commit is contained in:
Scott Lahteine 2024-11-26 23:23:53 -06:00
parent a2ae0dd72e
commit 3a47c01a4c
12 changed files with 133 additions and 26 deletions

View file

@ -26,16 +26,17 @@
/**
* Choose your version:
*/
// normal size or plus?
// Normal or Plus size?
#define ANYCUBIC_KOSSEL_PLUS
// Anycubic Probe version 1 or 2 see README.md; 0 for no probe
#define ANYCUBIC_PROBE_VERSION 2
// Heated Bed:
// 0 ... no heated bed
// 1 ... aluminium heated bed with "BuildTak-like" sticker
// 2 ... ultrabase heated bed
// 0 ... No heated bed
// 1 ... Aluminium heated bed with "BuildTak-like" sticker
// 2 ... Ultrabase heated bed
#define ANYCUBIC_KOSSEL_ENABLE_BED 2
/**

View file

@ -0,0 +1,10 @@
{
"ANYCUBIC_KOSSEL_PLUS": { "0":"Kossel", "1":"Kossel Plus" },
"ANYCUBIC_PROBE_VERSION": { "0":"No Probe", "1":"Anycubic Probe V1", "2":"Anycubic Probe V2" },
"ANYCUBIC_KOSSEL_ENABLE_BED": { "0":"No Bed", "1":"Aluminum Bed", "2":"Ultrabase Bed" },
"default": {
"ANYCUBIC_KOSSEL_PLUS": 1,
"ANYCUBIC_PROBE_VERSION": 2,
"ANYCUBIC_KOSSEL_ENABLE_BED": 2
}
}

View file

@ -26,16 +26,17 @@
/**
* Choose your version:
*/
// normal size or plus?
// Normal or Plus size?
//#define ANYCUBIC_KOSSEL_PLUS
// Anycubic Probe version 1 or 2 see README.md; 0 for no probe
#define ANYCUBIC_PROBE_VERSION 0
// Heated Bed:
// 0 ... no heated bed
// 1 ... aluminium heated bed with "BuildTak-like" sticker
// 2 ... ultrabase heated bed
// 0 ... No heated bed
// 1 ... Aluminium heated bed with "BuildTak-like" sticker
// 2 ... Ultrabase heated bed
#define ANYCUBIC_KOSSEL_ENABLE_BED 0
/**

View file

@ -0,0 +1,12 @@
{
"permute": {
"ANYCUBIC_KOSSEL_PLUS": { "0":"Kossel", "1":"Kossel Plus" },
"ANYCUBIC_PROBE_VERSION": { "0":"No Probe", "1":"Anycubic Probe V1", "2":"Anycubic Probe V2" },
"ANYCUBIC_KOSSEL_ENABLE_BED": { "0":"No Bed", "1":"Aluminum Bed", "2":"Ultrabase Bed" }
},
"default": {
"ANYCUBIC_KOSSEL_PLUS": 0,
"ANYCUBIC_PROBE_VERSION": 0,
"ANYCUBIC_KOSSEL_ENABLE_BED": 0
}
}

View file

@ -0,0 +1,11 @@
{
"groups": [{
"type": "exclusive",
"required": 1,
"options": [ "K8800_UBL", "K8800_BILINEAR" ],
}],
"default": {
"K8800_UBL": 1,
"K8800_BILINEAR": 0
}
}