rog-aura: add gap between numpad on gl504

This commit is contained in:
Luke D. Jones
2022-07-29 19:22:47 +12:00
parent de7fb4a942
commit 14f0693511
2 changed files with 8 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ row = [
'F10', 'F10',
'F11', 'F11',
'F12', 'F12',
'RowEndSpacer',
'Del', 'Del',
'NumPadPause', 'NumPadPause',
'NumPadPrtSc', 'NumPadPrtSc',
@@ -57,6 +58,7 @@ row = [
'Hyphen', 'Hyphen',
'Equals', 'Equals',
'BkSpc', 'BkSpc',
'RowEndSpacer',
'NumLock', 'NumLock',
'FwdSlash', 'FwdSlash',
'Star', 'Star',
@@ -80,6 +82,7 @@ row = [
'LBracket', 'LBracket',
'RBracket', 'RBracket',
'BackSlash', 'BackSlash',
'RowEndSpacer',
'N7', 'N7',
'N8', 'N8',
'N9', 'N9',
@@ -102,6 +105,7 @@ row = [
'SemiColon', 'SemiColon',
'Quote', 'Quote',
'Return', 'Return',
'RowEndSpacer',
'N4', 'N4',
'N5', 'N5',
'N6', 'N6',
@@ -123,6 +127,7 @@ row = [
'Period', 'Period',
'FwdSlash', 'FwdSlash',
'Rshift', 'Rshift',
'RowEndSpacer',
'N1', 'N1',
'N2', 'N2',
'N3', 'N3',
@@ -141,6 +146,7 @@ row = [
'RFn', 'RFn',
'RFn', 'RFn',
'RCtrlLarge', 'RCtrlLarge',
'RowEndSpacer',
'UpRegular', 'UpRegular',
'N0', 'N0',
'NumPadDel', 'NumPadDel',
@@ -166,6 +172,7 @@ row = [
'NormalSpacer', 'NormalSpacer',
'NormalSpacer', 'NormalSpacer',
'LeftRegular', 'LeftRegular',
'RowEndSpacer',
'DownRegular', 'DownRegular',
'RightRegular', 'RightRegular',
'NormalSpacer', 'NormalSpacer',

View File

@@ -47,7 +47,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut path = PathBuf::from(DATA_DIR); let mut path = PathBuf::from(DATA_DIR);
#[cfg(feature = "mocking")] #[cfg(feature = "mocking")]
{ {
board_name = "gx502".to_string(); board_name = "gl504".to_string();
path.pop(); path.pop();
path.push("rog-aura"); path.push("rog-aura");
path.push("data"); path.push("data");