-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathglobalVar.c
More file actions
31 lines (22 loc) · 859 Bytes
/
globalVar.c
File metadata and controls
31 lines (22 loc) · 859 Bytes
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
#include "globalVar.h"
/*===========================================================================*/
/* USB related stuff. */
/*===========================================================================*/
/*
* USB Driver structure.
*/
#if HAL_USE_SERIAL_USB
SerialUSBDriver SDU1;
BaseSequentialStream *chp = (BaseSequentialStream *) &SDU1;
#else
#endif // HAL_USE_SERIAL_USB
const uint8_t *UniqProcessorId = (uint8_t *) 0x1FFF7590;
const uint8_t UniqProcessorIdLen = 12;
/*
exemple of uinq id
[1C] [0] [26] [0] [14] [47] [31] [31] [33] [35] [34] [31]
[38] [0] [3A] [0] [15] [47] [31] [31] [33] [35] [34] [31]
[28] [0] [34] [0] [13] [47] [31] [31] [33] [35] [34] [31]
[29] [0] [33] [0] [17] [47] [31] [31] [33] [35] [34] [31]
[1E] [0] [3A] [0] [0B] [47] [31] [33] [31] [33] [30] [37]
*/