aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F4xx/FSMC_SRAM/membench.h
blob: 5f23e1cdd85b42080ee234bc5e2124746ab639ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef MEMBENCH_H_
#define MEMBENCH_H_

/*
 *
 */
typedef struct {
  void    *start;
  size_t  size;
} membench_t;

/*
 * all values in B/s
 */
typedef struct {
  uint32_t  memset;
  uint32_t  memcpy;
  uint32_t  memcpy_dma;
  uint32_t  memcmp;
} membench_result_t;

/*
 *
 */
#ifdef __cplusplus
extern "C" {
#endif
  void membench_run(membench_t *dest, const membench_t *src, membench_result_t *ret);
#ifdef __cplusplus
}
#endif

#endif /* MEMBENCH_H_ */