summaryrefslogtreecommitdiffstats
path: root/generate_utils.py
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2022-10-27 20:03:03 -0700
committeryum <yum.food.vr@gmail.com>2022-10-27 20:03:03 -0700
commitb22bcdebdae5ac3dfee29a85236c10af801b95f7 (patch)
tree400e51ec0f218cb07eb5bef4ed5da1d8e85ed484 /generate_utils.py
parent113f2858016c252b97cac96eab454ee16b2dcda2 (diff)
Change board size
It's now twice as wide and half as tall. * Add small margin to board * Add simple backplate shader
Diffstat (limited to 'generate_utils.py')
-rw-r--r--generate_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/generate_utils.py b/generate_utils.py
index bf7e6c7..3ad8050 100644
--- a/generate_utils.py
+++ b/generate_utils.py
@@ -9,8 +9,8 @@ def replaceMacros(lines, macro_defs):
# Note, (BOARD_ROWS * BOARD_COLS % NUM_LAYERS) must equal 0. If not, writing to
# the last cell will (with the current implementation) wrap around to the front
# of the board.
-BOARD_ROWS=8
-BOARD_COLS=22
+BOARD_ROWS=4
+BOARD_COLS=44
INDEX_BITS=4
CHARS_PER_CELL=80