Root/fw/secret.c

Source at commit 121acf6ffad8f1bcd4b08e50e293e597880b68eb created 10 years 11 months ago.
By Werner Almesberger, tornado/cpu/cpu.brd: make connection to the MCU's GND pad straighter
1/*
2 * fw/secret.c - Shared authentication secrets
3 *
4 * Written 2012 by Werner Almesberger
5 * Copyright 2012 Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13
14#include <stdint.h>
15
16#include <avr/pgmspace.h>
17
18#include "proto.h"
19#include "secret.h"
20
21
22const uint8_t maint_secret[PAYLOAD] PROGMEM = {
23    #include "unlock-secret.inc"
24};
25
26
27const uint8_t image_secret[2*PAYLOAD] PROGMEM = {
28        #include "image-secret.inc"
29};
30

Archive Download this file

Branches:
master
tornado-v1



interactive