forked from kiibohd/controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhitefox.bash
executable file
·104 lines (77 loc) · 2.06 KB
/
whitefox.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/usr/bin/env bash
#
# Keyboard: WhiteFox
#
# These build scripts are just a convenience for configuring your keyboard (less daunting than CMake)
# Jacob Alexander 2015-2018
# Default to TrueFox
Layout=${Layout:-truefox}
# VID:PID Mapping
VENDOR_ID="0x308F"
case "${Layout}" in
aria)
PRODUCT_ID="0x0008"
;;
iso)
PRODUCT_ID="0x0007"
;;
jackofalltrades)
PRODUCT_ID="0x000B"
;;
truefox)
PRODUCT_ID="0x000A"
;;
vanilla)
PRODUCT_ID="0x0006"
;;
winkeyless)
PRODUCT_ID="0x0009"
;;
esac
#################
# Configuration #
#################
# Feel free to change the variables in this section to configure your keyboard
BuildPath="WhiteFox"
# Define Layout Name
LayoutName=${Layout}
## KLL Configuration ##
# Generally shouldn't be changed, this will affect every layer
BaseMap="scancode_map scancode_map.${Layout}"
# This is the default layer of the keyboard
# NOTE: To combine kll files into a single layout, separate them by spaces
# e.g. DefaultMap="mylayout mylayoutmod"
DefaultMap="whitefox/all-leds stdFuncMap"
# This is where you set the additional layers
# NOTE: Indexing starts at 1
# NOTE: Each new layer is another array entry
# e.g. PartialMaps[1]="layer1 layer1mod"
# PartialMaps[2]="layer2"
# PartialMaps[3]="layer3"
PartialMaps[1]="whitefox/whitefox"
##########################
# Advanced Configuration #
##########################
# Don't change the variables in this section unless you know what you're doing
# These are useful for completely custom keyboards
# NOTE: Changing any of these variables will require a force build to compile correctly
# Keyboard Module Configuration
ScanModule="WhiteFox"
MacroModule="PixelMap"
OutputModule="USB"
DebugModule="full"
# Microcontroller
Chip="mk20dx256vlh7"
# Compiler Selection
Compiler="gcc"
########################
# Bash Library Include #
########################
# Shouldn't need to touch this section
# Check if the library can be found
if [ ! -f "${BASH_SOURCE%/*}/cmake.bash" ]; then
echo "ERROR: Cannot find 'cmake.bash'"
exit 1
fi
# Load the library
source "${BASH_SOURCE%/*}/cmake.bash"