Skip to content

Commit

Permalink
cpu/stm32f7: add support for stm32f722ze
Browse files Browse the repository at this point in the history
  • Loading branch information
aabadie committed Aug 18, 2017
1 parent 3648b08 commit 7682e11
Show file tree
Hide file tree
Showing 4 changed files with 15,358 additions and 130 deletions.
6 changes: 6 additions & 0 deletions cpu/stm32f7/include/cpu_conf.h
@@ -1,5 +1,6 @@
/*
* Copyright (C) 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
Expand All @@ -16,6 +17,7 @@
* @brief Implementation specific CPU configuration options
*
* @author Hauke Petersen <hauke.pertersen@fu-berlin.de>
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*/

#ifndef CPU_CONF_H
Expand All @@ -29,6 +31,8 @@
#include "vendor/stm32f767xx.h"
#elif defined(CPU_MODEL_STM32F769NI)
#include "vendor/stm32f769xx.h"
#elif defined(CPU_MODEL_STM32F722ZE)
#include "vendor/stm32f722xx.h"
#endif

#ifdef __cplusplus
Expand All @@ -44,6 +48,8 @@ extern "C" {
#define CPU_IRQ_NUMOF (98U)
#elif defined(CPU_MODEL_STM32F769NI) || defined(CPU_MODEL_STM32F767ZI)
#define CPU_IRQ_NUMOF (110U)
#elif defined(CPU_MODEL_STM32F722ZE)
#define CPU_IRQ_NUMOF (104U)
#endif
/** @} */

Expand Down

0 comments on commit 7682e11

Please sign in to comment.