summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-17 18:56:38 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-17 18:56:38 +0100
commit4014014f58fcc7fa350a96e7aaf7a73605f9afee (patch)
tree370da58ccfa7aedb9d6c4c92c6e18608e0a91152
parent86c7c308e85bbde06fe298414bb23963f44b6cf5 (diff)
remove beta suffix from version number
-rw-r--r--src/static_patterns.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/static_patterns.h b/src/static_patterns.h
index 07fdb5e..94cf51e 100644
--- a/src/static_patterns.h
+++ b/src/static_patterns.h
@@ -14,7 +14,8 @@
#include <avr/pgmspace.h>
/*
- * Note: Static patterns must not be longer than 128 bytes (headers excluded)
+ * Note: Static patterns must not be longer than 128 bytes (headers excluded).
+ * See MessageSpecification.md for the meaning of their headers.
*/
const uint8_t PROGMEM shutdownPattern[] = {
@@ -39,19 +40,19 @@ const uint8_t PROGMEM flashingPattern[] = {
#ifdef LANG_DE
const uint8_t PROGMEM emptyPattern[] = {
- 0x10, 0x2d,
+ 0x10, 0x29,
0xc0, 0x00,
' ', 1, ' ', 'B', 'l', 'i', 'n', 'k', 'e', 'n', 'r', 'o', 'c', 'k', 'e',
- 't', ' ', 'v', '1', '.', '0', 'b', 'e', 't', 'a', ' ', '-', ' ', 'S', 'p',
- 'e', 'i', 'c', 'h', 'e', 'r', ' ', 'i', 's', 't', ' ', 'l', 'e', 'e', 'r'
+ 't', ' ', 'v', '1', '.', '0', ' ', '-', ' ', 'S', 'p', 'e', 'i', 'c', 'h',
+ 'e', 'r', ' ', 'i', 's', 't', ' ', 'l', 'e', 'e', 'r'
};
#else
const uint8_t PROGMEM emptyPattern[] = {
- 0x10, 0x2c,
+ 0x10, 0x28,
0xc0, 0x00,
' ', 1, ' ', 'B', 'l', 'i', 'n', 'k', 'e', 'n', 'r', 'o', 'c', 'k', 'e',
- 't', ' ', 'v', '1', '.', '0', 'b', 'e', 't', 'a', ' ', '-', ' ', 'S', 't',
- 'o', 'r', 'a', 'g', 'e', ' ', 'i', 's', ' ', 'e', 'm', 'p', 't', 'y'
+ 't', ' ', 'v', '1', '.', '0', ' ', '-', ' ', 'S', 't', 'o', 'r', 'a', 'g',
+ 'e', ' ', 'i', 's', ' ', 'e', 'm', 'p', 't', 'y'
};
#endif