2015-08-12 11:53:41 +01:00
|
|
|
{
|
|
|
|
"name": "microbit-dal",
|
2016-05-11 13:52:28 +01:00
|
|
|
"version": "2.0.0-rc3",
|
2016-04-06 10:50:53 +01:00
|
|
|
"license": "MIT",
|
2015-08-12 11:53:41 +01:00
|
|
|
"description": "The runtime library for the BBC micro:bit, developed by Lancaster University",
|
2015-10-14 09:43:57 +01:00
|
|
|
"keywords": [
|
|
|
|
"mbed-classic",
|
|
|
|
"microbit",
|
|
|
|
"runtime",
|
|
|
|
"library",
|
|
|
|
"lancaster",
|
|
|
|
"University"
|
|
|
|
],
|
2015-10-08 14:37:35 +01:00
|
|
|
"author": "Joe Finney <j.finney@lancaster.ac.uk (mailto:j.finney@lancaster.ac.uk) >",
|
2016-04-06 10:50:53 +01:00
|
|
|
"homepage": "https://github.com/lancaster-university/microbit-dal/",
|
2015-10-14 09:43:57 +01:00
|
|
|
"dependencies": {
|
2016-04-08 11:45:15 +01:00
|
|
|
"mbed-classic": "lancaster-university/mbed-classic#microbit_hfclk+mb4",
|
2016-02-26 15:21:30 +00:00
|
|
|
"ble": "lancaster-university/BLE_API#v2.5.0+mb3",
|
2016-04-08 00:06:23 +01:00
|
|
|
"ble-nrf51822": "lancaster-university/nrf51822#v2.5.0+mb6",
|
2016-04-08 11:45:15 +01:00
|
|
|
"nrf51-sdk": "lancaster-university/nrf51-sdk#v2.2.0+mb4"
|
2015-08-12 11:53:41 +01:00
|
|
|
},
|
2015-10-14 09:43:57 +01:00
|
|
|
"extraIncludes": [
|
2016-03-24 14:00:11 +00:00
|
|
|
"inc/core",
|
|
|
|
"inc/types",
|
|
|
|
"inc/drivers",
|
microbit-dal: added yotta configuration mappings to DAL specific configuration options.
Yotta can now be used to configure the configuration options for the
dal.
An full config.json looks like:
{
"microbit-dal":{
"bluetooth":{
"enabled": 1,
"pairing_mode": 0,
"private_addressing": 0,
"open": 0,
"whitelist": 1,
"advertising_timeout": 0,
"tx_power": 0,
"dfu_service": 1,
"event_service": 1,
"device_info_service": 1
},
"reuse_sd": 1,
"gatt_table_size": "0x300",
"heap_allocator": 1,
"nested_heap_proportion": 0.75,
"system_tick_period": 6,
"system_components": 10,
"idle_components": 6,
"use_accel_lsb": 0,
"min_display_brightness": 1,
"max_display_brightness": 255,
"display_scroll_speed": 120,
"display_scroll_stride": -1,
"display_print_speed": 400,
"panic_on_heap_full": 1,
"debug": 0,
"heap_debug": 0,
"stack_size":2048,
"sram_base":"0x20000008",
"sram_end":"0x20004000",
"sd_limit":"0x20002000",
"gatt_table_start":"0x20001900"
}
}
2016-04-19 15:02:28 +01:00
|
|
|
"inc/bluetooth",
|
|
|
|
"inc/platform"
|
2015-08-12 11:53:41 +01:00
|
|
|
]
|
2016-03-08 19:24:33 +00:00
|
|
|
}
|