Skip to content

Commit

Permalink
Fix build failures for bastardkb/tbk and jels/boaty (#19152)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Nov 25, 2022
1 parent 6ed605a commit 8f9b49d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion keyboards/bastardkb/tbk/tbk.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/


#pragma once

#include "quantum.h"

// clang-format off
#define LAYOUT_split_4x6_5( \
k00, k01, k02, k03, k04, k05, k55, k54, k53, k52, k51, k50, \
Expand Down
2 changes: 1 addition & 1 deletion lib/python/qmk/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def avr_processor_rules(info_data, rules):
"""
info_data['processor_type'] = 'avr'
info_data['platform'] = rules['ARCH'] if 'ARCH' in rules else 'unknown'
info_data['protocol'] = 'V-USB' if rules.get('MCU') in VUSB_PROCESSORS else 'LUFA'
info_data['protocol'] = 'V-USB' if info_data['processor'] in VUSB_PROCESSORS else 'LUFA'

if 'bootloader' not in info_data:
info_data['bootloader'] = 'atmel-dfu'
Expand Down

0 comments on commit 8f9b49d

Please sign in to comment.