 1f7bbf279c
			
		
	
	
		1f7bbf279c
		
			
		
	
	
	
	
		
			
			* [Keyboard] Added D48 keyboard. * Updated README. * Cleanups. * Moved d48 to handwired/ * Added link to build process album. * Coding conventions cleanups. * Added DS1307 RTC! * Minor cleanups. * Apply suggestions from code review Co-Authored-By: Drashna Jaelre <drashna@live.com> * Minor refactoring. * Readme fix. * Moved leftover keymap-specific code from keyboard space into keymap. * Added encoder button pins to extra matrix row. * Updated README, updated pinout & cleaned up the glcdfont * Apply suggestions from code review Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update config.h * Apply suggestions from code review Co-Authored-By: Ryan <fauxpark@gmail.com> * Added default keymap. Refactored existing keymap. * Update keyboards/handwired/d48/README.md Co-Authored-By: Ryan <fauxpark@gmail.com> * Apply suggestions from code review Co-Authored-By: Joel Challis <git@zvecr.com> * Minor alignment fix. * Update keyboards/handwired/d48/glcdfont_d48.c Co-Authored-By: Ryan <fauxpark@gmail.com> * Changes as per PR. * Apply suggestions from code review Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
		
			
				
	
	
		
			77 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "config_common.h"
 | |
| 
 | |
| /* USB Device descriptor parameter */
 | |
| #define VENDOR_ID       0xFEED
 | |
| #define PRODUCT_ID      0x6060
 | |
| #define DEVICE_VER      0x0001
 | |
| #define MANUFACTURER    Andrew Dunai
 | |
| #define PRODUCT         D48
 | |
| 
 | |
| /* Key matrix size */
 | |
| #define MATRIX_ROWS 5
 | |
| #define MATRIX_COLS 12
 | |
| 
 | |
| /* Key matrix pins */
 | |
| #define MATRIX_ROW_PINS { B8, B9, B1, B2, B4 }
 | |
| 
 | |
| #define MATRIX_COL_PINS { A2, B0, A7, A8, A13, A14, B12, B11, B10, B15, B14, B13 }
 | |
| #define UNUSED_PINS
 | |
| 
 | |
| /* COL2ROW or ROW2COL */
 | |
| #define DIODE_DIRECTION COL2ROW
 | |
| 
 | |
| /* Set 0 if debouncing isn't needed */
 | |
| // #define DEBOUNCE 5
 | |
| 
 | |
| /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
 | |
| // #define LOCKING_SUPPORT_ENABLE
 | |
| 
 | |
| /* Locking resynchronize hack */
 | |
| // #define LOCKING_RESYNC_ENABLE
 | |
| 
 | |
| /* prevent stuck modifiers */
 | |
| // #define PREVENT_STUCK_MODIFIERS
 | |
| 
 | |
| /* RGB Underglow */
 | |
| #ifdef RGBLIGHT_ENABLE
 | |
| #define RGB_DI_PIN A15
 | |
| #define RGBLED_NUM 14
 | |
| #define RGBLIGHT_HUE_STEP 8
 | |
| #define RGBLIGHT_SAT_STEP 8
 | |
| #define RGBLIGHT_VAL_STEP 8
 | |
| #define RGBLIGHT_ANIMATIONS
 | |
| #endif
 | |
| 
 | |
| /* Audio */
 | |
| #ifdef AUDIO_ENABLE
 | |
| #define STARTUP_SONG_DOOM SONG(E1M1_DOOM)
 | |
| #define STARTUP_SONG SONG( \
 | |
|     Q__NOTE(_E6), \
 | |
|     Q__NOTE(_A6), \
 | |
|     H__NOTE(_E7), \
 | |
|     Q__NOTE(_E6), \
 | |
|     Q__NOTE(_E7) \
 | |
| )
 | |
| #endif
 | |
| 
 | |
| /* Encoders */
 | |
| #define ENCODERS_PAD_A { B3, A0 }
 | |
| #define ENCODERS_PAD_B { A6, A1 }
 | |
| /* #define ENCODER_RESOLUTION 4 */
 | |
| 
 | |
| /* OLED */
 | |
| #define OLED_FONT_H "glcdfont_d48.c"
 | |
| #define OLED_TIMEOUT 0
 | |
| // #define OLED_SCROLL_TIMEOUT 1000
 | |
| 
 | |
| /* Taps (encoder tap_code) */
 | |
| #define TAP_CODE_DELAY 10
 | |
| 
 | |
| /* I2C */
 | |
| //#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2
 | |
| //#define PAL_MODE_STM32_ALTERNATE_OPENDRAIN (PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN)
 | |
| 
 | |
| /* DS1307 */
 | |
| #define DS1307_ADDR (0x68 << 1)
 |