Skip to content

Commit

Permalink
Update LUFA submodule (qmk#18168)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored and nolanseaton committed Jan 23, 2023
1 parent 863d885 commit 8fc30d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/qmk/cli/generate/dfu_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def generate_dfu_header(cli):
kb_info_json = dotty(info_json(cli.config.generate_dfu_header.keyboard))

keyboard_h_lines = [GPL2_HEADER_C_LIKE, GENERATED_HEADER_C_LIKE, '#pragma once']
keyboard_h_lines.append(f'#define MANUFACTURER {kb_info_json["manufacturer"]}')
keyboard_h_lines.append(f'#define PRODUCT {kb_info_json["keyboard_name"]} Bootloader')
keyboard_h_lines.append(f'#define MANUFACTURER "{kb_info_json["manufacturer"]}"')
keyboard_h_lines.append(f'#define PRODUCT "{kb_info_json["keyboard_name"]} Bootloader"')

# Optional
if 'qmk_lufa_bootloader.esc_output' in kb_info_json:
Expand Down

0 comments on commit 8fc30d0

Please sign in to comment.