From 12b98a8bd64b6b8d47423c543b8eeb7cfcad542e Mon Sep 17 00:00:00 2001 From: bernd Date: Sat, 6 Aug 2011 16:51:37 +0200 Subject: [PATCH] Provide a dummy secrets file for simulat0r builds --- simulat0r/firmware/SECRETS | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 simulat0r/firmware/SECRETS diff --git a/simulat0r/firmware/SECRETS b/simulat0r/firmware/SECRETS new file mode 100644 index 0000000..8f35c3d --- /dev/null +++ b/simulat0r/firmware/SECRETS @@ -0,0 +1,17 @@ +#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