infinity: Add initial files for keyboard support
This commit is contained in:
parent
58284dd19b
commit
9218133d0b
@ -53,6 +53,7 @@ You can find some keyboard specific projects under `converter` and `keyboard` di
|
|||||||
* [macway](keyboard/macway/) - [Compact keyboard mod][GH_macway] [retired]
|
* [macway](keyboard/macway/) - [Compact keyboard mod][GH_macway] [retired]
|
||||||
* [KMAC](keyboard/kmac/) - Korean custom keyboard
|
* [KMAC](keyboard/kmac/) - Korean custom keyboard
|
||||||
* [Lightsaber](keyboard/lightsaber/) - Korean custom keyboard
|
* [Lightsaber](keyboard/lightsaber/) - Korean custom keyboard
|
||||||
|
* [Infinity](keyboard/infinity/) - Massdrop [Infinity keyboard][Infinity]
|
||||||
|
|
||||||
[GH_macway]: http://geekhack.org/showwiki.php?title=Island:11930
|
[GH_macway]: http://geekhack.org/showwiki.php?title=Island:11930
|
||||||
[GH_hhkb]: http://geekhack.org/showwiki.php?title=Island:12047
|
[GH_hhkb]: http://geekhack.org/showwiki.php?title=Island:12047
|
||||||
@ -72,6 +73,7 @@ You can find some keyboard specific projects under `converter` and `keyboard` di
|
|||||||
[PC98]: http://en.wikipedia.org/wiki/NEC_PC-9801
|
[PC98]: http://en.wikipedia.org/wiki/NEC_PC-9801
|
||||||
[Sun]: http://en.wikipedia.org/wiki/Sun-3
|
[Sun]: http://en.wikipedia.org/wiki/Sun-3
|
||||||
[IIGS]: http://en.wikipedia.org/wiki/Apple_IIGS
|
[IIGS]: http://en.wikipedia.org/wiki/Apple_IIGS
|
||||||
|
[Infinity]: https://www.massdrop.com/buy/infinity-keyboard-kit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -35,6 +35,10 @@ typedef uint32_t matrix_row_t;
|
|||||||
#define MATRIX_IS_ON(row, col) (matrix_get_row(row) && (1<<col))
|
#define MATRIX_IS_ON(row, col) (matrix_get_row(row) && (1<<col))
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/* number of matrix rows */
|
/* number of matrix rows */
|
||||||
uint8_t matrix_rows(void);
|
uint8_t matrix_rows(void);
|
||||||
/* number of matrix columns */
|
/* number of matrix columns */
|
||||||
@ -57,5 +61,8 @@ void matrix_print(void);
|
|||||||
void matrix_power_up(void);
|
void matrix_power_up(void);
|
||||||
void matrix_power_down(void);
|
void matrix_power_down(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
#define STRING_STACK_LIMIT 120
|
#define STRING_STACK_LIMIT 120
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
int xprintf(const char* format, ...) { return 0; }
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* mbed Serial */
|
/* mbed Serial */
|
||||||
Serial ser(UART_TX, UART_RX);
|
Serial ser(UART_TX, UART_RX);
|
||||||
|
|
||||||
@ -44,3 +48,4 @@ int xprintf(const char* format, ...)
|
|||||||
return r;
|
return r;
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
@ -17,6 +17,7 @@ CC_SYMBOLS = \
|
|||||||
-D__MBED__=1
|
-D__MBED__=1
|
||||||
|
|
||||||
OBJECTS += \
|
OBJECTS += \
|
||||||
|
$(OBJDIR)/libraries/USBDevice/USBDevice/USBHAL_LPC11U.o \
|
||||||
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/TOOLCHAIN_GCC_ARM/startup_LPC11xx.o \
|
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/TOOLCHAIN_GCC_ARM/startup_LPC11xx.o \
|
||||||
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/cmsis_nvic.o \
|
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/cmsis_nvic.o \
|
||||||
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/system_LPC11Uxx.o \
|
$(OBJDIR)/libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11UXX/system_LPC11Uxx.o \
|
||||||
|
@ -4,7 +4,9 @@
|
|||||||
OBJECTS += \
|
OBJECTS += \
|
||||||
$(OBJDIR)/libraries/mbed/common/gpio.o \
|
$(OBJDIR)/libraries/mbed/common/gpio.o \
|
||||||
$(OBJDIR)/libraries/mbed/common/us_ticker_api.o \
|
$(OBJDIR)/libraries/mbed/common/us_ticker_api.o \
|
||||||
$(OBJDIR)/libraries/mbed/common/wait_api.o
|
$(OBJDIR)/libraries/mbed/common/wait_api.o \
|
||||||
|
$(OBJDIR)/libraries/USBDevice/USBDevice/USBDevice.o
|
||||||
|
|
||||||
|
|
||||||
# $(OBJDIR)/libraries/mbed/common/assert.o \
|
# $(OBJDIR)/libraries/mbed/common/assert.o \
|
||||||
# $(OBJDIR)/libraries/mbed/common/board.o \
|
# $(OBJDIR)/libraries/mbed/common/board.o \
|
||||||
@ -75,9 +77,9 @@ INCLUDE_PATHS += \
|
|||||||
-I$(MBED_DIR)/libraries/USBDevice/USBSerial
|
-I$(MBED_DIR)/libraries/USBDevice/USBSerial
|
||||||
|
|
||||||
# TMK mbed protocol
|
# TMK mbed protocol
|
||||||
#OBJECTS += \
|
OBJECTS += \
|
||||||
# $(OBJDIR)/protocol/mbed/mbed_driver.o \
|
$(OBJDIR)/protocol/mbed/mbed_driver.o \
|
||||||
# $(OBJDIR)/protocol/mbed/HIDKeyboard.o
|
$(OBJDIR)/protocol/mbed/HIDKeyboard.o
|
||||||
|
|
||||||
INCLUDE_PATHS += \
|
INCLUDE_PATHS += \
|
||||||
-I$(TMK_DIR)/protocol/mbed
|
-I$(TMK_DIR)/protocol/mbed
|
||||||
|
Reference in New Issue
Block a user