crashtest-r0ket/simulat0r/firmware/SECRETS

18 lines
417 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef _SECRETS_
#define _SECRETS_
// these keys are not the official keys
// they´re just here to make the simulat0r build
static uint32_t const meshkey[4] = {
0x01010101, 0x02020202, 0x03030303, 0x04040404
};
static const uint32_t openbeaconkey[4] = {
0x05050505, 0x06060606, 0x07070707, 0x08080808
};
static uint32_t const remotekey[4] = {
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
};
#endif