]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
pc98_usb: Fix pin configuration in README
authortmk <hasu@tmk-kbd.com>
Sat, 18 Aug 2018 23:39:41 +0000 (08:39 +0900)
committertmk <hasu@tmk-kbd.com>
Mon, 20 Aug 2018 01:22:37 +0000 (10:22 +0900)
converter/pc98_usb/Makefile
converter/pc98_usb/README
converter/pc98_usb/config.h

index b8438d2da6a3bc964a1988aa462969bb23b1b1ec..24606d6942009f70f651354bca32b5b2a72406a3 100644 (file)
@@ -8,6 +8,9 @@ TMK_DIR = ../../tmk_core
 TARGET_DIR = .
 
 # keyboard dependent files
+#   Add one of lines below to select serial protocol implementation
+#      protocol/serial_uart.c
+#      protocol/serial_soft.c
 SRC =  matrix.c \
        protocol/serial_uart.c
 
index 0914f2293db249fb8c276f9c7dbe01715ce2cb97..6da54178bedfb936a5c4a64050ab056be41b3b0f 100644 (file)
@@ -25,7 +25,7 @@ Wiring: You can change this with editing config.h.
     2   GND             GND
     3  ~RDY             PD4
     4   RXD             PD2
-    5  ~RTY             PD5
+    5  ~RTY             PD1
     6   NC
     7   NC
     8   5V              VCC
@@ -140,6 +140,9 @@ Its scan code map is very different from standard types. This is not tested.
 
 Other PC98 converter projects and resource
 ------------------------------------------
+PC-9800シリーズ テクニカルデータブック HARDWARE 編 1993年 p139, p343
+https://archive.org/stream/PC9800TechnicalDataBookHARDWARE1993/PC-9800TechnicalDataBook_HARDWARE1993#page/n355
+
 PC98 to USB
 http://davy.nyacom.net/kbd98usb/
 
index 9341708ffaa9c4080e959c2b88e317c12f2d862d..c6315d00b4c71f63536dcc4f8f571430de36a707 100644 (file)
@@ -64,8 +64,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *     asynchronous, positive logic, 19200baud, bit order: LSB first
  *     1-start bit, 8-data bit, odd parity, 1-stop bit
  */
+
 /*
  * Software Serial
+ *   Add protocol/serial_soft.c to SRC in Makefile
  */
 #define SERIAL_SOFT_BAUD                19200
 #define SERIAL_SOFT_PARITY_ODD
@@ -110,6 +112,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 /*
  * Hardware Serial(UART)
+ *   Add protocol/serial_uart.c to SRC in Makefile
  */
 #if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega32U2__)
     #define SERIAL_UART_BAUD       19200