blob: 741a4447269ef8a38e3c955abf68db6288470ba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* @brief
*/
#ifndef _FLASH_H_
#define _FLASH_H_
#define FLASH_BASE 0x40022000
#define FLASH_ACR FLASH_BASE
void flash_enable_prefetch(void);
void flash_set_latency(void);
#endif
|