Skip to content

Commit 6b44c95

Browse files
committed
Fix device name having quotes!
1 parent ec6f11e commit 6b44c95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/src/options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define STR(macro) QUOTE(macro)
66
const unsigned char target_name[] = "\xBE\xEF\xCA\xFE" STR(TARGET_NAME);
77
const uint8_t target_name_size = sizeof(target_name);
8-
const char device_name[] = STR(DEVICE_NAME);
8+
const char device_name[] = DEVICE_NAME;
99
const uint8_t device_name_size = sizeof(device_name);
1010

1111
const char PROGMEM compile_options[] = {

0 commit comments

Comments
 (0)