Support latest PXT with GC (#1798)

* Enable gc and basic compilation fixes

* Add missing GC stuff

* Set microbit-dal version

* Disable jacdac in servo

* UTF fixes

* TS build fixes

* Auto-generated files update

* We only seem to have that much

* Fix for new new compiler

* Account for uninitialized scheduler

* Intialize memory allocator

* bump references

* updated package

* Set image tag, requires https://github.com/Microsoft/pxt/pull/5262

* updated project summaries

* Fixing block tests
This commit is contained in:
Michał Moskal
2019-02-21 15:41:32 -08:00
committed by GitHub
parent 040b699a27
commit 71d98822ae
26 changed files with 330 additions and 124 deletions

View File

@ -1,5 +1,5 @@
{
"servos.Servo.run": "Set the throttle on a continuous servo",
"servos.Servo.run|param|speed": "the throttle of the motor from -100% to 100%",
"servos.Servo.setAngle": "set the servo angle"
"servos.Servo.setAngle": "Set the servo angle"
}

View File

@ -5,6 +5,7 @@
"servos.Servo.run|block": "continuous %servo run at %speed=speedPicker \\%",
"servos.Servo.setAngle|block": "set %servo angle to %degrees=protractorPicker °",
"servos.Servo.setPulse|block": "set %servo pulse to %micros μs",
"servos.Servo.stop|block": "stop %servo",
"{id:category}Servos": "Servos",
"{id:group}Servos": "Servos"
}

View File

@ -1,3 +1,13 @@
{
"additionalFilePath": "../../node_modules/pxt-common-packages/libs/servo"
"additionalFilePath": "../../node_modules/pxt-common-packages/libs/servo",
"files": [
"README.md",
"servo.ts",
"ns.ts",
"targetoverrides.ts"
],
"public": true,
"dependencies": {
"core": "file:../core"
}
}