1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 11:52:43 +01:00
RIOT/cpu/stm32/include/periph/wl/periph_cpu.h
Akshai M fd8ddd6161 boards: add nucleo-wl55jc
Co-authored-by: Kevin "Tristate Tom" Weiss <weiss.kevin604@gmail.com>
2021-04-20 21:04:29 +02:00

43 lines
828 B
C

/*
* Copyright (C) 2021 Freie Universität Berlin
*
* 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.
*/
/**
* @ingroup cpu_stm32
* @{
*
* @file
* @brief STM32WL CPU specific definitions for internal peripheral handling
*
* @author Akshai M <akshai.m@fu-berlin.de>
*
*/
#ifndef PERIPH_WL_PERIPH_CPU_H
#define PERIPH_WL_PERIPH_CPU_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef DOXYGEN
/**
* @brief Starting address of the ROM bootloader
* see application note AN2606 ( Table 143 : System memory)
*/
#define STM32_BOOTLOADER_ADDR (0x1FFF0000)
#endif /* ndef DOXYGEN */
#ifdef __cplusplus
}
#endif
#endif /* PERIPH_WL_PERIPH_CPU_H */
/** @} */