mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 06:23:53 +01:00
cpu/stm32f4: add support for smt32f412zg
This commit is contained in:
parent
b9ec282f04
commit
dfe55b6dec
@ -31,6 +31,8 @@
|
||||
#include "vendor/stm32f410rx.h"
|
||||
#elif defined(CPU_MODEL_STM32F411RE)
|
||||
#include "vendor/stm32f411xe.h"
|
||||
#elif defined(CPU_MODEL_STM32F412ZG)
|
||||
#include "vendor/stm32f412zx.h"
|
||||
#elif defined(CPU_MODEL_STM32F413ZH)
|
||||
#include "vendor/stm32f413xx.h"
|
||||
#elif defined(CPU_MODEL_STM32F415RG)
|
||||
|
||||
7389
cpu/stm32f4/include/vendor/stm32f412zx.h
vendored
Normal file
7389
cpu/stm32f4/include/vendor/stm32f412zx.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
32
cpu/stm32f4/ldscripts/stm32f412zg.ld
Normal file
32
cpu/stm32f4/ldscripts/stm32f412zg.ld
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright (C) 2015-2017 Freie Universität Berlin
|
||||
* 2017 Inria
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @addtogroup cpu_stm32f4
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Memory definitions for the STM32F412ZG
|
||||
*
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
MEMORY
|
||||
{
|
||||
rom (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
|
||||
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 256K
|
||||
cpuid (r) : ORIGIN = 0x1fff7a10, LENGTH = 12
|
||||
}
|
||||
|
||||
_cpuid_address = ORIGIN(cpuid);
|
||||
|
||||
INCLUDE cortexm_base.ld
|
||||
Loading…
x
Reference in New Issue
Block a user