Root/
| Source at commit 63a4b895d3d7da5a8b71ab383976ae835db52e99 created 10 years 11 months ago. By Werner Almesberger, tornado/cpu/cpu.sch (CON3): nISP and nRESET were swapped | |
|---|---|
| 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 | |
| 22 | const uint8_t maint_secret[PAYLOAD] PROGMEM = { |
| 23 | #include "unlock-secret.inc" |
| 24 | }; |
| 25 | |
| 26 | |
| 27 | const uint8_t image_secret[2*PAYLOAD] PROGMEM = { |
| 28 | #include "image-secret.inc" |
| 29 | }; |
| 30 | |
Branches:
master
tornado-v1
