forked from sstaub/TeensyID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeensyID.h
executable file
·110 lines (96 loc) · 2.96 KB
/
TeensyID.h
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* TeensyMAC library code is placed under the MIT license
* Copyright (c) 2017 Stefan Staub
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef TEENSYID_H
#define TEENSYID_H
#include "Arduino.h"
/** Teens USB Serial Number
*
* @ returns
* The USB Serial Number
*/
uint32_t teensyUsbSN();
/** Teensy Serial Number
*
* @param sn Pointer to an array with size of 4 uint8_t which contents the serial number
*/
void teensySN(uint8_t *sn);
/** Teensy Serial Number
*
* @returns
* A formated string in hex xx-xx-xx-xx
*/
const char* teensySN(void);
/** Teensy MAC Address
*
* @param mac Pointer to an array with size of 6 uint8_t which contents the mac address
*/
void teensyMAC(uint8_t *mac);
/** Teensy MAC Address
*
* @returns
* A formated string in hex xx:xx:xx:xx:xx:xx
*/
const char* teensyMAC(void);
/** Kinetis Chip UID
*
* @param uid Pointer to an array with size of 4 uint32_t which contents the kinetis uid
*/
void kinetisUID(uint32_t *uid);
/** Kinetis Chip UID
*
* @returns
* A formated string in hex xxxx:xxxx:xxxx:xxxx
*/
const char* kinetisUID(void);
/** Teensy UUID (RFC4122)
*
* @param uid Pointer to an array with size of 16 uint8_t which contents the uuid
*
* @note
* It is an UUID extracted from the Kinetis UID and the MAC Address.
* It is marked as version 4, (pseudo)random based
*/
void teensyUUID(uint8_t *uid);
/** Teensy UUID (RFC4122)
*
* @returns
* A formated string in hex xxxx-xx-xx-xx-xxxxxx
*/
const char* teensyUUID(void);
/** Teensy UID 64-bit for Teensy 4.x
*
* @param uid Pointer to an array with size of 16 uint8_t which contents the uuid
*
* @note
* It is an UUID extracted from the Kinetis UID and the MAC Address.
* It is marked as version 4, (pseudo)random based
*/
void teensyUID64(uint8_t *uid64);
/** Teensy UID 64-bit for Teensy 4.x
*
* @returns
* A formated string in hex xxxx-xx-xx-xx-xxxxxx
*/
const char* teensyUID64(void);
#endif