blob: 58c5f738ae6d73af056e1fadb5c132dc5d372fcb (
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
|
url = '/dev/ttyACM0'
serial = dict(
baudrate = 19200,
timeout = 60,
)
shelf = './base'
json = './cards.json'
csv = './cards.csv'
storage = 'csv'
#whether the storage method should be encrypted
storage_encrypt = False
uid_bytes = 4
cmd_bytes = 1
empty_uid = 0
empty_hash = '0' * 64
empty_mid = 0
hash_bytes = 64
mac_bytes = 64
init_sleep = 0
|