cleanup settings (#172)

- closes https://github.com/microsoft/pxt-calliope/issues/170
- deprecates https://github.com/microsoft/pxt-calliope/issues/162
- no changes for https://github.com/microsoft/pxt-calliope/issues/161

Co-authored-by: JW <gitkraken@juriwolf.de>
Co-authored-by: Juri <info@juriwolf.de>
This commit is contained in:
Juri Wolf 2022-04-04 18:51:58 +02:00 committed by GitHub
parent ec378c5b09
commit 63571fb12f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 25 deletions

View File

@ -26,10 +26,6 @@
}
},
"optionalConfig": {
"microbit-dal": {
"stack_size": 1280,
"gatt_table_size": "0x700"
}
},
"userConfigs": [
]

View File

@ -124,34 +124,24 @@
"event_service": 0,
"device_info_service": 0
},
"stack_size": 2048,
"stack_size": 1280,
"gatt_table_size": "0x600",
"panic_on_heap_full": 0,
"debug": 0,
"heap_debug": 0,
"sram_end": "0x20008000"
},
"RAM_SIZE": "\"32K\""
"sram_end": "0x20004000",
"RAM_SIZE": "\"16K\""
}
},
"userConfigs": [
{
"description": "Limit bluetooth access to BLE mode (A + B + Reset)",
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 0
}
}
}
},
{
"description": "32K RAM (mini v2 and some v1.3)",
"config": {
"microbit-dal": {
"stack_size": 2048,
"sram_end": "0x20008000"
},
"RAM_SIZE": "\"32K\""
"sram_end": "0x20008000",
"RAM_SIZE": "\"16K\""
}
}
},
{
@ -159,9 +149,9 @@
"config": {
"microbit-dal": {
"stack_size": 1280,
"sram_end": "0x20004000"
},
"RAM_SIZE": "\"16K\""
"sram_end": "0x20004000",
"RAM_SIZE": "\"16K\""
}
}
}
]

View File

@ -109,7 +109,7 @@
"useNewFunctions": true
},
"compileService": {
"yottaTarget": "calliope-mini-classic-gcc@https://github.com/calliope-mini/target-calliope-mini-classic-gcc#v1.2.3",
"yottaTarget": "calliope-mini-classic-gcc@https://github.com/calliope-mini/target-calliope-mini-classic-gcc#v1.2.4",
"yottaCorePackage": "microbit",
"githubCorePackage": "calliope-mini/microbit",
"gittag": "v2.2.0-rc6-calliope.rc3-iss0.3",