mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2026-01-01 01:41:18 +01:00
45 lines
670 B
C
45 lines
670 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Gunar Schorcht
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup cpu_gd32v
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief CPU specific definitions
|
|
*/
|
|
|
|
#include "cpu_conf.h"
|
|
#include "cpu_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Returns the address of running application in flash
|
|
*/
|
|
static inline uint32_t cpu_get_image_baseaddr(void)
|
|
{
|
|
extern uint8_t _start;
|
|
return (uint32_t)&_start;
|
|
}
|
|
|
|
/**
|
|
* @brief Starts another image in flash
|
|
*/
|
|
static inline void cpu_jump_to_image(uint32_t addr)
|
|
{
|
|
__asm__ volatile ("jr %0" :: "r" (addr));
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|