You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
820 B

[Keyboard] Add uzu42 keyboard (#6842) * initial commit * OLEDに表示するロゴをuzuのものに差し替えた * delete undefault keymaps * delete info.json * delete pro_micro.h * remove USE_Link_Time_Optimization check * Moved constant defined for each keymap.c to rev1.h * update layer_state_reader.c * Rename Uzu42 to uzu42 * remove bootloader.h include * LAYOUT_kc to LAYOUT * delete keymap level rules.mk * update readme.md * remove persistent_default_layer_set function. * try refactor to use split_common and use OLED driver * Revert "try refactor to use split_common and use OLED driver" This reverts commit 5a9afceacb450ca9eca8a146b64c24d0e0925dd8. * Update keyboards/uzu42/rev1/config.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/uzu42/rev1/rev1.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/uzu42/rev1/rev1.h Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/uzu42/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Remove lines already defined in QMK * Update keyboards/uzu42/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/uzu42/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * Update keyboards/uzu42/rules.mk Co-Authored-By: fauxpark <fauxpark@gmail.com> * replaced comment block * Update keyboards/uzu42/config.h Co-Authored-By: Drashna Jaelre <drashna@live.com> * Revert "Revert "try refactor to use split_common and use OLED driver"" This reverts commit a7849216f49a411558d4cfdcfbf3e202defe892a. * fix setting for RGBLED * The default of OLED_DRIVER_ENABLE has been changed to no. * Delete unuse block. * Remove unnecessary keycode definitions. * Remove unuse custom keycode. * Remove not needed code. * Remove not called code. * Remove code overwritten by the core. * Remove LAYOUT_kc macro. * Moved the definition of the layer block to keymap.c. * Removed unuse variable. * Remove code overwritten by the core too. * incorporate layer changes * Moved src rule to keymap from rev1. * Removed rgb_state_reader.c from lib folder and the code move to the keymap.c * Removed layer_state_reader.c from lib folder and the code move to the keymap.c * Removed logo_reader.c from lib folder and the code move to the keymap.c * Removed keylogger.c from lib folder and the code move to the keymap.c * Moved glcdfont_uzu42.c from lib folder to the default keymaps folder. * Removed unused files.
4 years ago
  1. #pragma once
  2. #include "../uzu42.h"
  3. #include "quantum.h"
  4. #ifdef RGBLIGHT_ENABLE
  5. //rgb led driver
  6. #include "ws2812.h"
  7. #endif
  8. #ifdef USE_I2C
  9. #include <stddef.h>
  10. #ifdef __AVR__
  11. #include <avr/io.h>
  12. #include <avr/interrupt.h>
  13. #endif
  14. #endif
  15. #define LAYOUT( \
  16. L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
  17. L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
  18. L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
  19. L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35 \
  20. ) \
  21. { \
  22. { L00, L01, L02, L03, L04 }, \
  23. { L10, L11, L12, L13, L14 }, \
  24. { L20, L21, L22, L23, L24 }, \
  25. { L30, L31, L32, L33, L34, L35 }, \
  26. { R04, R03, R02, R01, R00 }, \
  27. { R14, R13, R12, R11, R10 }, \
  28. { R24, R23, R22, R21, R20 }, \
  29. { R35, R34, R33, R32, R31, R30 } \
  30. }