MCPcopy Create free account
hub / github.com/TheThingsNetwork/lorawan-stack / appendReverse

Function appendReverse

pkg/encoding/lorawan/lorawan.go:37–42  ·  view source on GitHub ↗
(dst []byte, src ...byte)

Source from the content-addressed store, hash-verified

35}
36
37func appendReverse(dst []byte, src ...byte) []byte {
38 for i := range src {
39 dst = append(dst, src[len(src)-1-i])
40 }
41 return dst
42}
43
44// DeviceEIRPToFloat32 returns v as a float32 value.
45func DeviceEIRPToFloat32(v ttnpb.DeviceEIRP) float32 {

Callers 4

AppendFHDRFunction · 0.85
AppendJoinAcceptPayloadFunction · 0.85
AppendJoinRequestPayloadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected