Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cpu/arm7_common/doc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@defgroup cpu_arm7_common ARM7 CPU common
@ingroup cpu
@brief Common implementations and headers for ARM based micro-controllers

## Overview

Common implementations and headers for ARM based micro-controllers
4 changes: 1 addition & 3 deletions cpu/arm7_common/include/arm7_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
#pragma once

/**
* @defgroup cpu_arm7_common ARM7 CPU common
* @brief Common implementations and headers for ARM based micro-controllers
* @ingroup cpu
* @ingroup cpu_arm7_common
* @{
*/

Expand Down
8 changes: 8 additions & 0 deletions cpu/cortexm_common/doc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@defgroup cpu_cortexm_common ARM Cortex-M common
@ingroup cpu
@brief Common implementations and headers for Cortex-M family based
micro-controllers

## Overview

Common implementations and headers for Cortex-M family based micro-controllers
5 changes: 1 addition & 4 deletions cpu/cortexm_common/include/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
#pragma once

/**
* @defgroup cpu_cortexm_common ARM Cortex-M common
* @ingroup cpu
* @brief Common implementations and headers for Cortex-M family based
* micro-controllers
* @ingroup cpu_cortexm_common
* @{
*
* @file
Expand Down Expand Up @@ -88,7 +85,7 @@
static inline void cortexm_init_fpu(void)
{
/* initialize the FPU on Cortex-M4F CPUs */
#if (defined(CPU_CORE_CORTEX_M33) || defined(CPU_CORE_CORTEX_M4F) || defined(CPU_CORE_CORTEX_M7)) && defined(MODULE_CORTEXM_FPU)

Check warning on line 88 in cpu/cortexm_common/include/cpu.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
/* give full access to the FPU */
SCB->CPACR |= (uint32_t)CORTEXM_SCB_CPACR_FPU_ACCESS_FULL;
#endif
Expand Down Expand Up @@ -237,7 +234,7 @@
* This function can be used to check for memory size,
* peripherals availability, etc.
*
* @param[in] address Address to check

Check warning on line 237 in cpu/cortexm_common/include/cpu.h

View workflow job for this annotation

GitHub Actions / static-tests

horizontal tab used
* @return true if address is valid
*/
bool cpu_check_address(volatile const char *address);
Expand Down
Loading