This commit is contained in:
Peli de Halleux 2016-09-09 09:59:21 -07:00
commit 95669e174a
4 changed files with 13 additions and 8 deletions

View File

@ -58,7 +58,9 @@ After running this simulation several seconds by moving the micro:bit side to si
![](/static/mb/acc2.png) ![](/static/mb/acc2.png)
### ~ ### ~
Finally, you must open the Excel CSV file by clicking on the data.xls file that was downloaded to Downloads Folder.
Finally, you must open the Excel CSV file by clicking on the `data.csv` file
that was downloaded to Downloads Folder.
![](/static/mb/data3.png) ![](/static/mb/data3.png)
@ -93,4 +95,4 @@ NEXT: The Watch
```package ```package
microbit-radio microbit-radio
``` ```

View File

@ -166,6 +166,7 @@ namespace Array_ {
int removeElement(RefCollection *c, uint32_t x) { return c->removeElement(x); } int removeElement(RefCollection *c, uint32_t x) { return c->removeElement(x); }
} }
// Import some stuff directly // Import some stuff directly
namespace pxt { namespace pxt {
//% //%
@ -181,10 +182,12 @@ namespace pxt {
//% //%
Action mkAction(int reflen, int totallen, int startptr); Action mkAction(int reflen, int totallen, int startptr);
//% //%
RefRecord* mkRecord(int reflen, int totallen);
//%
RefRecord* mkClassInstance(int offset); RefRecord* mkClassInstance(int offset);
//% //%
void RefRecord_destroy(RefRecord *r);
//%
void RefRecord_print(RefRecord *r);
//%
void debugMemLeaks(); void debugMemLeaks();
//% //%
int incr(uint32_t e); int incr(uint32_t e);

View File

@ -1,6 +1,6 @@
{ {
"name": "pxt-microbit", "name": "pxt-microbit",
"version": "0.3.84", "version": "0.3.85",
"description": "micro:bit target for PXT", "description": "micro:bit target for PXT",
"keywords": [ "keywords": [
"JavaScript", "JavaScript",
@ -29,6 +29,6 @@
"typescript": "^1.8.7" "typescript": "^1.8.7"
}, },
"dependencies": { "dependencies": {
"pxt-core": "0.3.96" "pxt-core": "0.3.97"
} }
} }

View File

@ -93,7 +93,7 @@
"yottaTarget": "bbc-microbit-classic-gcc", "yottaTarget": "bbc-microbit-classic-gcc",
"yottaCorePackage": "pxt-microbit-core", "yottaCorePackage": "pxt-microbit-core",
"githubCorePackage": "microsoft/pxt-microbit-core", "githubCorePackage": "microsoft/pxt-microbit-core",
"gittag": "v0.4.4", "gittag": "v0.5.0",
"serviceId": "ws" "serviceId": "ws"
}, },
"serial": { "serial": {
@ -149,4 +149,4 @@
"userVoiceApiKey": "WEkkIGaj1WtJnSUF59iwaA", "userVoiceApiKey": "WEkkIGaj1WtJnSUF59iwaA",
"userVoiceForumId": 402381 "userVoiceForumId": 402381
} }
} }