Using the PAK-VI is very simple. Here's a program that echos characters to the DEBUG screen:

pakout con 15
pakin con 14
' Uncomment one of the two lines below
'baud con 84 ' For BS2/BS2E only -- change for BS2SX, etc. (9600 baud)
baud con 240 ' For BS2SX/BS2P (9600 baud)
fpin con 13
keyin var byte
' reset pak
serout pakout,baud,[$FF]
pause 500  ' wait for reset complete
top:
' read character
serin pakin\fpin,baud,[keyin]
Debug keyin
Goto top

Be sure to select one (and only one) of the baud rate constants depending on which processor you are using. This program will work with the schematic in the PAK-VI manual.


Site contents © 1997-2018 by AWC, Houston TX    (281) 334-4341