mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
74 lines
2.2 KiB
Python
74 lines
2.2 KiB
Python
#!/bin/false
|
|
# This file is part of Espruino, a JavaScript interpreter for Microcontrollers
|
|
#
|
|
# Copyright (C) 2013 Gordon Williams <gw@pur3.co.uk>
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# ----------------------------------------------------------------------------------------
|
|
# This file contains information for a specific board - the available pins, and where LEDs,
|
|
# Buttons, and other in-built peripherals are. It is used to build documentation as well
|
|
# as various source and header files for Espruino.
|
|
# ----------------------------------------------------------------------------------------
|
|
|
|
import pinutils;
|
|
|
|
info = {
|
|
'name' : "nRF51 Tag",
|
|
'link' : [ "" ],
|
|
'default_console' : "EV_BLUETOOTH",
|
|
# 'default_console_tx' : "D15",
|
|
# 'default_console_rx' : "D17",
|
|
# 'default_console_baudrate' : "9600",
|
|
'variables' : 350,
|
|
'binary_name' : 'espruino_%v_nrf51tag.bin',
|
|
'build' : {
|
|
'optimizeflags' : '-Os',
|
|
'libraries' : [
|
|
'BLUETOOTH',
|
|
'GRAPHICS',
|
|
],
|
|
'makefile' : [
|
|
'SAVE_ON_FLASH=1',
|
|
'DEFINES+=-DUSE_DEBUGGER -DUSE_TAB_COMPLETE',
|
|
]
|
|
}
|
|
};
|
|
|
|
chip = {
|
|
'part' : "NRF51822",
|
|
'family' : "NRF51",
|
|
'package' : "QFN48",
|
|
'ram' : 16,
|
|
'flash' : 256,
|
|
'speed' : 16,
|
|
'usart' : 1,
|
|
'spi' : 1,
|
|
'i2c' : 1,
|
|
'adc' : 1,
|
|
'dac' : 0,
|
|
# If using DFU bootloader, it sits at 0x3C000 - 0x40000 (0x40000 is end of flash)
|
|
# Might want to change 256 -> 240 in the code below
|
|
'saved_code' : {
|
|
'address' : ((256 - 3 - 16) * 1024),
|
|
'page_size' : 1024,
|
|
'pages' : 3,
|
|
'flash_available' : (256 - 108 - 16 - 3) # total flash pages - softdevice - bootloader - saved code
|
|
}
|
|
};
|
|
|
|
devices = {
|
|
# 'LED1' : { 'pin' : 'D22' },
|
|
# 'LED2' : { 'pin' : 'D21' },
|
|
# 'LED3' : { 'pin' : 'D23' }
|
|
};
|
|
|
|
def get_pins():
|
|
pins = pinutils.generate_pins(0,31) # 32 General Purpose I/O Pins.
|
|
pinutils.findpin(pins, "PD27", True)["functions"]["XL1"]=0;
|
|
pinutils.findpin(pins, "PD26", True)["functions"]["XL2"]=0;
|
|
#The boot/reset button will function as a reset button in normal operation. Pin reset on PD21 needs to be enabled on the nRF52832 device for this to work.
|
|
return pins
|