#!/bin/false # -*- coding: utf8 -*- # This file is part of Espruino, a JavaScript interpreter for Microcontrollers # # Copyright (C) 2013 Gordon Williams # Copyright (C) 2014 Alain Sézille for NucleoF411RE specific lines of this file # # 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' : "ST NUCLEO-F413ZH", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260320"], 'default_console' : "EV_SERIAL3", # USART3 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "D8", # USART2_TX on PD8, 'default_console_rx' : "D9", # USART2_RX on PD9 'variables' : 7423, # (128-12)*1024/16-1 'binary_name' : 'espruino_%v_nucleof413zh.bin', 'build' : { 'optimizeflags' : '-O3 -w', 'libraries' : [ 'USB_HID', 'NET', 'GRAPHICS', 'NEOPIXEL' ], 'makefile' : [ 'NUCLEO=1', 'DEFINES+=-DUSE_USB_OTG_FS=1 -DUSB_NO_VBUS_SENSE=1', 'STLIB=STM32F413xH', 'PRECOMPILED_OBJS+=$(ROOT)/targetlibs/stm32f4/lib/startup_stm32f413xx.o' ] } }; chip = { 'part' : "STM32F411RET6", 'family' : "STM32F4", 'package' : "LQFP144", 'ram' : 320, # 0x0001 8000 long, from 0x2000 0000 to 0x2001 7FFF 'flash' : 1536, # 0x0008 0000 long, from 0x0800 0000 to 0x0807 FFFF 'speed' : 100, 'usart' : 6, 'spi' : 4, 'i2c' : 3, 'adc' : 1, 'dac' : 0, 'saved_code' : { # code size 225248 = 0x36FE0 starts at 0x0800 0000 ends at 0x0803 6FE0 # so we have some left room for Espruino firmware and no risk to clear it while saving 'address' : 0x08060000, # flash_saved_code_start 0x0806 0000 to 0x807 5000 # we have enough flash space in this single flash page to save all of the ram 'page_size' : 131072, # size of pages : on STM32F411, last 2 pages are 128 Kbytes # we use the last flash page only, furthermore it persists after a firmware flash of the board 'pages' : 1, # count of pages we're using to save RAM to Flash, 'flash_available' : 512 # binary will have a hole in it, so we just want to test against full size }, #'place_text_section' : 0x08010000, # note flash_available above # TODO USELESS }; devices = { 'OSC' : { 'pin_1' : 'H0', # MCO from ST-LINK fixed at 8 Mhz, boards rev MB1136 C-02 'pin_2' : 'H1' }, 'OSC_RTC' : { 'pin_1' : 'C14', # MB1136 C-02 corresponds to a board configured with on-board 32kHz oscillator 'pin_2' : 'C15' }, 'LED1' : { 'pin' : 'B0'}, 'LED2' : { 'pin' : 'B14'}, 'LED3' : { 'pin' : 'B7'}, 'BTN1' : { 'pin' : 'C13', 'inverted' : False, # 1 when unpressed, 0 when pressed! (Espruino board is 1 when pressed) 'pinstate': 'IN_PULLUP', # to specify INPUT, OUPUT PULL_UP PULL_DOWN.. }, 'JTAG' : { 'pin_MS' : 'A13', 'pin_CK' : 'A14', 'pin_DI' : 'A15' }, 'USB' : { #'pin_otg_pwr' : 'C0', #'pin_vsense' : 'A9', 'pin_dm' : 'A11', 'pin_dp' : 'A12', #'pin_vbus' : 'A9', 'pin_id' : 'A10', }, 'NUCLEO_A' : [ 'A0','A1','A4','B0','C1','C0' ], 'NUCLEO_D' : [ 'A3','A2','A10','B3','B5','B4','B10','A8','A9','C7','B6','A7','A6','A5','B9','B8' ], }; # left-right, or top-bottom order board = { 'left' : [ 'C10', 'C12', 'VDD', 'BOOT0', 'NC', 'NC', 'A13', 'A14', 'A15', 'GND', 'B7', 'C13', 'C14', 'C15', 'H0', 'H1', 'VBAT', 'C2', 'C3'], 'left2' : [ 'C11', 'D2', 'E5V', 'GND', 'NC', 'IOREF', 'RESET', '3V3', '5V', 'GND', 'GND', 'VIN', 'NC', 'A0', 'A1', 'A4', 'B0', 'C1', 'C0'], 'right2' : [ 'C9', 'B8', 'B9', 'AVDD', 'GND', 'A5', 'A6', 'A7', 'B6','C7','A9','A8','B10','B4','B5','B3','A10','A2','A3'], 'right' : [ 'C8', 'C6', 'C5', 'U5V', 'NC', 'A12', 'A11', 'B12', 'NC', 'GND', 'B2', 'B1', 'B15', 'B14', 'B13', 'AGND', 'C4', 'NC', 'NC'], }; board["_css"] = """ #board { width: 713px; height: 800px; left: 200px; background-image: url(img/NUCLEOF411RE.jpg); } #boardcontainer { height: 1020px; } #left { top: 310px; right: 640px; } #left2 { top: 310px; left: 85px; } #right { top: 310px; left: 615px; } #right2 { top: 310px; right: 105px; } """; def get_pins(): pins = pinutils.scan_pin_file([], 'stm32f413.csv', 6, 9, 10) pins = pinutils.scan_pin_af_file(pins, 'stm32f413_af.csv', 0, 1) return pinutils.only_from_package(pinutils.fill_gaps_in_pin_list(pins), chip["package"])