Skip to content

Commit

Permalink
Update LUFA submodule (#18168)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Aug 26, 2022
1 parent 43fd647 commit 2472040
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/lufa
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 2472040

Please sign in to comment.