aboutsummaryrefslogtreecommitdiff
path: root/eir.go
blob: 1b1f6302ac9cee6d820f7ba8c1513119969e8f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package anki

type BLEAdvRecord struct {
	Type   uint8
	Length uint8
	Data   [30]byte
}

const (
	AdvTypeInvalid          = 0x00
	AdvTypeFlags            = 0x01
	AdvTypeUUID             = 0x07
	AdvTypeLocalName        = 0x09
	AdvTypeTXPower          = 0x0a
	AdvTypeManufacturerData = 0xff
)