Paparazzi UAS  v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ram_arch.h File Reference

Specific RAM section for DMA usage on F7. More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define IN_STD_SECTION_NOINIT(var)   var __attribute__ ((section(STD_SECTION), aligned(8)))
 
#define IN_STD_SECTION_CLEAR(var)   var __attribute__ ((section(STD_SECTION "_clear"), aligned(8)))
 
#define IN_STD_SECTION(var)   var __attribute__ ((section(STD_SECTION "_init"), aligned(8)))
 
#define IN_FAST_SECTION_NOINIT(var)   var __attribute__ ((section(FAST_SECTION), aligned(8)))
 
#define IN_FAST_SECTION_CLEAR(var)   var __attribute__ ((section(FAST_SECTION "_clear"), aligned(8)))
 
#define IN_FAST_SECTION(var)   var __attribute__ ((section(FAST_SECTION "_init"), aligned(8)))
 
#define IN_DMA_SECTION_NOINIT(var)   var __attribute__ ((section(DMA_SECTION), aligned(8)))
 
#define IN_DMA_SECTION_CLEAR(var)   var __attribute__ ((section(DMA_SECTION "_clear"), aligned(8)))
 
#define IN_DMA_SECTION(var)   var __attribute__ ((section(DMA_SECTION "_init"), aligned(8)))
 

Detailed Description

Specific RAM section for DMA usage on F7.

F1 ram0: 64ko std

F3 ram4: 8ko ccm, fast, no dma ram0: 40Ko std F37 ram0: 32Ko std F4 ram4: 64ko ccm, fast, no dma ram0: 128Ko std

F7 ram0: std, fast, no dma ram3: dma

Definition in file ram_arch.h.

Macro Definition Documentation

#define IN_DMA_SECTION (   var)    var __attribute__ ((section(DMA_SECTION "_init"), aligned(8)))

Definition at line 76 of file ram_arch.h.

#define IN_DMA_SECTION_CLEAR (   var)    var __attribute__ ((section(DMA_SECTION "_clear"), aligned(8)))

Definition at line 75 of file ram_arch.h.

#define IN_DMA_SECTION_NOINIT (   var)    var __attribute__ ((section(DMA_SECTION), aligned(8)))

Definition at line 74 of file ram_arch.h.

#define IN_FAST_SECTION (   var)    var __attribute__ ((section(FAST_SECTION "_init"), aligned(8)))

Definition at line 72 of file ram_arch.h.

#define IN_FAST_SECTION_CLEAR (   var)    var __attribute__ ((section(FAST_SECTION "_clear"), aligned(8)))

Definition at line 71 of file ram_arch.h.

#define IN_FAST_SECTION_NOINIT (   var)    var __attribute__ ((section(FAST_SECTION), aligned(8)))

Definition at line 70 of file ram_arch.h.

#define IN_STD_SECTION (   var)    var __attribute__ ((section(STD_SECTION "_init"), aligned(8)))

Definition at line 68 of file ram_arch.h.

#define IN_STD_SECTION_CLEAR (   var)    var __attribute__ ((section(STD_SECTION "_clear"), aligned(8)))

Definition at line 67 of file ram_arch.h.

#define IN_STD_SECTION_NOINIT (   var)    var __attribute__ ((section(STD_SECTION), aligned(8)))

Definition at line 66 of file ram_arch.h.