From 51729e3bc9be8c7f63faa7ace3dd792b5f83022d Mon Sep 17 00:00:00 2001 From: Joe Finney Date: Wed, 12 Aug 2015 15:59:18 +0100 Subject: [PATCH] microbit: Update to lancaster-university repo. - Updates to modules.json to point to new lancaster-university repo - Cleanup of .gitignore - Modified main.cpp to latest DAL API. --- .gitignore | 4 ---- module.json | 6 +++--- source/main.cpp | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 3012068..1fc6e85 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,3 @@ build yotta_modules yotta_targets/* - -!.gitignore - -!yotta_targets/bbc-microbit-armcc \ No newline at end of file diff --git a/module.json b/module.json index 7198c57..8e7cb1e 100644 --- a/module.json +++ b/module.json @@ -10,9 +10,9 @@ ], "dependencies": { "mbed-classic": "~0.0.4", - "ble": "jamesadevine/BLE_API#master", - "ble-nrf51822": "jamesadevine/nrf51822#master", - "microbit-dal":"jamesadevine/microbit-dal#master" + "ble": "lancaster-university/BLE_API#master", + "ble-nrf51822": "lancaster-university/nrf51822#master", + "microbit-dal":"lancaster-university/microbit-dal#master" }, "targetDependencies": {}, "bin": "./source" diff --git a/source/main.cpp b/source/main.cpp index d09083f..e0fa4f3 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -20,7 +20,7 @@ void app_main() { while (1) { - uBit.display.scrollString("HELLO! :)"); + uBit.display.scroll("BELLO! :)"); uBit.sleep(1000); } }