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
/**
* @brief Undocumented API functions for STM32CubeProgrammer
* Credits to: https://github.com/wervin/stm32cubeprog-rs
*/
extern "C"
/**
* \brief Write a core register.
* \param reg : The register to write.
* \param data : The data to write.
* \return 0 if the writing operation correctly finished, otherwise an error occurred.
*/
int ;
/**
* \brief Read a core register.
* \param reg : The register to read.
* \param data : The data read.
* \return 0 if the reading operation correctly finished, otherwise an error occurred.
*/
int ;
}