Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 6 years 1 month
Filescodecommon
..
GPIO-STM32F303_gpio_v1_0_Modes.xml
board.c
board.h
board_gpio.h
common.c
common.h
common.mk
link.ld
stm32f30x_flash.c
stm32f30x_flash.h
storage.c
storage.h
link.ld
/* ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010, 2011,2012,2013 Giovanni Di Sirio. This file is part of ChibiOS/RT. ChibiOS/RT is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. ChibiOS/RT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ __ram_start__ = ORIGIN(ram0); __ram_size__ = LENGTH(ram0); __ram_end__ = __ram_start__ + __ram_size__; __flash_page_size__ = 0x800; /* RAM region to be used for Main stack. This stack accommodates the processing of all exceptions and interrupts*/ REGION_ALIAS("MAIN_STACK_RAM", ram0); /* RAM region to be used for the process stack. This is the stack used by the main() function.*/ REGION_ALIAS("PROCESS_STACK_RAM", ram0); /* RAM region to be used for data segment.*/ REGION_ALIAS("DATA_RAM", ram0); /* RAM region to be used for BSS segment.*/ REGION_ALIAS("BSS_RAM", ram0); /* RAM region to be used for the default heap.*/ REGION_ALIAS("HEAP_RAM", ram0); INCLUDE rules.ld
Report a bug