Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hw_flash.h « Inc « Core « BLE_MeshLightingPRFNode « BLE « Applications « P-NUCLEO-WB55.Nucleo « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18c088d3e5c39d45c504472a9c926079f088c867 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**
******************************************************************************
* @file    hw_flash.h
* @brief   Header for hw_flash.c module
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2019 STMicroelectronics. 
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the 
* License. You may obtain a copy of the License at:
*                        opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __HW_FLASH_H
#define __HW_FLASH_H

#ifdef __cplusplus
extern "C" {
#endif

/* Includes ------------------------------------------------------------------*/
/**
 * @brief Write 64 bits double word in FLASH
 *
 * @param  FLASH destination address 
 * @param  64 bits double word data 
 * @retval result
 */
MOBLE_RESULT HW_FLASH_Write(uint32_t address, uint64_t data);

/**
 * @brief Erase FLASH page
 *
 * @param  address of FLASH page 
 * @param  number of page 
 * @param  interrupt not used 
 * @retval result
 */
MOBLE_RESULT HW_FLASH_Erase(uint32_t page, uint16_t n, int interrupt);

#if 0
/**
 * @brief Get Option Byte IPCC buffer address
 *
 * @param  None 
 * @retval Option Byte IPCC buffer address
 */
uint32_t HW_FLASH_OB_GetIPCCBufferAddr(void);

/**
 * @brief Get Option Byte SFSA
 *
 * @param  None 
 * @retval Option Byte SFSA
 */
uint32_t HW_FLASH_OB_GetSFSA(void);

/**
 * @brief Get Option Byte SBSRA
 *
 * @param  None 
 * @retval Option Byte SBSRA
 */
uint32_t HW_FLASH_OB_GetSBRSA(void);

/**
 * @brief Get Option Byte SNBRSA
 *
 * @param  None 
 * @retval Option Byte SNBRSA
 */
uint32_t HW_FLASH_OB_GetSNBRSA(void);
#endif

#ifdef __cplusplus
}
#endif

#endif /*__HW_FLASH_H */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/